[已解決] git push 報錯:git: 'credential-manager' is not a git command. See 'git --help'.
解決方案
1)運行 git config --list,部分輸出如下:
core.editor=nano
credential.helper=manager
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.url=https://github.com/xxx.git
remote.origin.fetch=+refs/heads/:refs/remotes/origin/
branch.master.remote=origin
branch.master.merge=refs/heads/master
2)運行git config --global --unset credential.helper,之后再git push orgin master即可。