git: 'credential-osxkeychainit' is not a git command. See 'git --help' -
when try push committed changes repo command line on mac os x
git push
i following message:
git: 'credential-osxkeychainit' not git command. see 'git --help'.
this irrespective of if date or not.
any ideas can messed up?
this post (from 2011...) explain why not work under windows.
this
git-credential-cache
doesn’t work windows systemsgit-credential-cache
communicates through unix socket.
try might solve problem:
git config --global credential.helper wincred
Comments
Post a Comment