armundle
armundle

Reputation: 1179

git: 'credential-osxkeychainit' is not a git command. See 'git --help'

When I try to push committed changes back to the repo from command line on Mac OS X

git push

I get the following message:

git: 'credential-osxkeychainit' is not a git command. See 'git --help'.

This is irrespective of if everything is up to date or not.

Any ideas what can be messed up?

Upvotes: 0

Views: 2509

Answers (1)

CodeWizard
CodeWizard

Reputation: 142164

This post (from 2011...) explain why it does not work under windows.

This git-credential-cache doesn’t work for Windows systems as git-credential-cache communicates through a Unix socket.

Try this is might solve your problem:

git config --global credential.helper wincred

Upvotes: 1

Related Questions