I installed the Git-2.34.0-64-bit.exe from Git for Windows and picked most of the default options. The install said that it was going to use the "git-credential-manager-core" which seems to be the newest incarnation of this.
Having completed the install and reboot, when I navigate to a directory with a GIT repo and I type git status from the cmd line, it works fine.
But when I type git fetch it says:
git:
credential-manageris not a git command. Most similar command iscredential-manager-core
So, why isn't it using the core version of the credential manager, or rather, what do I need to do to make it use that?
Thanks
2 Answers 2
git credential-manager-core configure
Just needed to execute this, then it worked
git credential-manager-core configure
Did not work for me, instead I updated my user .gitconfig file. Under the [credential] portion there are several helpers. This is what yours now should be:
[credential]
helper = manager-core
helper =
helper = C:/Program\\ Files/Git/mingw64/bin/git-credential-manager.exe
If you look in the actual directory ( c:\program files\git\mingw64\bin ) you should be able to identify the credential manager and see that the old one is now missing.
Comments
Explore related questions
See similar questions with these tags.