Disabled Git Gredentials Manager on Windows


Open CMD run as administrator.

 

First check. 

$ git config --get credential.helper

it should be:   manager

 

Now, edit git config system.

$ git config --edit --system

Add comment by using this symbol # into syntax of

before

helper = manager

after

# helper = manager

 

Now, edit git config global

$  git config --edit --global

and then paste the syntax

 [core]
    askpass =

To save changes, press Ctrl + X, and then press Y, and enter.



Source :

https://stackoverflow.com/questions/74647039/how-can-i-stop-saving-credentials-in-windows-credential-manager

https://stackoverflow.com/questions/37182847/how-do-i-disable-git-credential-manager-for-windows?rq=4

Comments