Home > OS >  Clear git-credential-manager-core cached login
Clear git-credential-manager-core cached login

Time:08-15

Cannot clear the git-credential-manager-core cache

it always show the last user

enter image description here

  1. Using Windows credentials Manager - no login regarding Git

  2. Using the "Forget: option in Dialog not working enter image description here

  3. Using "Erase" in Git Bash Not clearing enter image description here

  4. Delete all Sign-In from Visual Studio enter image description here

  5. delete all "%LOCALAPPDATA%.IdentityService"

any help would be most appreciated

CodePudding user response:

You should try at command line by git config --global --unset user.password.

Please let me know if it worked.

Regards.

CodePudding user response:

Disable Git Credential Manager if you don’t use it.

git config --global --unset credential.helper
  • Related