Friday, December 29, 2023

Oracle Critical Patch Updates (CPU's)

 

Critical Patch Updates


Critical Patch Updates provide security patches for supported Oracle on-premises products. They are available to customers with valid support contracts. 

Starting in April 2022, Critical Patch Updates are released on the third Tuesday of January, April, July, and October (They were previously published on the Tuesday closest to the 17th day of January, April, July, and October). 


The next four dates are:


  • 16 January 2024
  • 16 April 2024
  • 16 July 2024
  • 15 October 2024


A pre-release announcement will be published on the Thursday preceding each Critical Patch Update release.

Wednesday, December 27, 2023

How to push from local repo to remote ?

 push  from local repo to remote



PS C:\git-lab\demo1> git remote -v

origin  https://github.com/anuragkumarjoy/terraform-code.git (fetch)

origin  https://github.com/anuragkumarjoy/terraform-code.git (push)

PS C:\git-lab\demo1>

PS C:\git-lab\demo1>




PS C:\git-lab\demo1> git push origin master

Enumerating objects: 5, done.

Counting objects: 100% (5/5), done.

Writing objects: 100% (3/3), 282 bytes | 282.00 KiB/s, done.

Total 3 (delta 0), reused 0 (delta 0), pack-reused 0

To https://github.com/anuragkumarjoy/terraform-code.git

   ae8129e..ea488b5  master -> master

PS C:\git-lab\demo1> 

PS C:\git-lab\demo1>




git push -f origin master (also work )

How to add git remote origin ?

 Add  git remote origin 


PS C:\git-lab\demo1> git remote -v

PS C:\git-lab\demo1> 

PS C:\git-lab\demo1>

PS C:\git-lab\demo1> git remote add origin https://github.com/anuragkumarjoy/terraform-code.git

PS C:\git-lab\demo1> 

PS C:\git-lab\demo1>

PS C:\git-lab\demo1> git remote -v

origin  https://github.com/anuragkumarjoy/terraform-code.git (fetch)

origin  https://github.com/anuragkumarjoy/terraform-code.git (push)

PS C:\git-lab\demo1>

PS C:\git-lab\demo1>

How to remove remote origin in git ?

 Remove git remote origin



PS C:\git-lab\demo1> git remote -v

origin  https://github.com/anuragkumarjoy/terraform-code.git (fetch)

origin  https://github.com/anuragkumarjoy/terraform-code.git (push)

PS C:\git-lab\demo1>

PS C:\git-lab\demo1>


PS C:\git-lab\demo1> git remote remove origin

PS C:\git-lab\demo1> 

PS C:\git-lab\demo1>

PS C:\git-lab\demo1> git remote -v

PS C:\git-lab\demo1> 

PS C:\git-lab\demo1>


Git push Error - fatal: credential-cache unavailable; no unix socket support

PS C:\git-lab\demo1>

PS C:\git-lab\demo1> git push --set-upstream origin master

fatal: credential-cache unavailable; no unix socket support

Everything up-to-date

branch 'master' set up to track 'origin/master'.

PS C:\git-lab\demo1>


PS C:\git-lab\demo1> 

PS C:\git-lab\demo1> git config --global --unset credential.helper

PS C:\git-lab\demo1> 



PS C:\git-lab\demo1> git push --set-upstream origin master

Everything up-to-date

branch 'master' set up to track 'origin/master'.

PS C:\git-lab\demo1>

PS C:\git-lab\demo1>

PS C:\git-lab\demo1>