Wednesday, May 04, 2016

error: git-credential-osxkeychain died of signal 11

When I git push to my repository I got an error on Mac OS 10.7.5
>>>git push
error: git-credential-osxkeychain died of signal 11
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
$ sudo mv git-credential-osxkeychain /usr/local/git/binn
$ chmod 755 /usr/local/git/bin/git-credential-osxkeychain

No comments:

Post a Comment