Monday, 14 August 2023

[git] fatal: Authentication failed for 'https://git…

Say, you changed your windows password and now git is dissatisfied with the stored password when operating on a remote repository. You can change the stored password as follows.

rundll32.exe keymgr.dll,KRShowKeyMgr

 

 

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...