Skip to content

Instantly share code, notes, and snippets.

@Y4suyuki
Last active December 24, 2015 07:58
Show Gist options
  • Save Y4suyuki/6766964 to your computer and use it in GitHub Desktop.
Save Y4suyuki/6766964 to your computer and use it in GitHub Desktop.
Trouble with git credential-osxkeychain error: git-credential-osxkeychain died of signal 11 ref: http://fictional.in/updating_git-credential-osxkeychain/

Trouble with git credential-osxkeychain

When I tried push to my repository I got an error

>>>git push -u origin master
error: git-credential-osxkeychain died of signal 11

After searched web, I found this blog post. It seems to be that there's a bug in git-credential-osxkeychain so simply replace that with new one on S3.

>>>which git git-credential-osxkeychain
/usr/local/git/bin/git-credential-osxkeychain
>>>curl -O http://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 15520  100 15520    0     0   5446      0  0:00:02  0:00:02 --:--:-- 11014
>>>mv git-credential-osxkeychain /usr/local/git/binn
>>>chmod 755 /usr/local/git/bin/git-credential-osxkeychain

After did above, I successfully pushed my git repo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment