Aug 10, 2021
git: ‘credential-manager’ is not a git command. See ‘git — help’. — I managed to solve a really irritating problem with Git. Every time I was pushing or pulling from my repository I was seeing the message above.
% git config --list | grep credential
credential.helper=osxkeychain
credential.helper=manager% git config --global --unset credential.helper
This fixes the problem :)