Re: Git (SHA1) problem on Mac
From: Mark Dodwell <hidden>
Date: 2016-06-15 22:44:28
On 11 Apr 2008, at 00:17, tarmigan wrote:
On Thu, Apr 10, 2008 at 2:12 PM, Mark Dodwell [off-list ref] wrote:quoted
Hi, I've got a problem with Git on my Mac, and I've exhausted Google and #git (irc), perhaps somebody can help? I'm using git version X installed from source, I'm on Mac OS X 10.4.11. Here's the problem I'm seeing: [imac:~]$ mkdir git-test [imac:~]$ cd git-test [imac:~/git-test]$ git init Initialized empty Git repository in .git/ [imac:~/git-test]$ touch README [imac:~/git-test]$ git add README [imac:~/git-test]$ git commit -m 'first commit' Created initial commit b6e6cb6: first commit 0 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 README [imac:~/git-test]$ git remote add origin git@github.com:mkdynamic/git-test.git [imac:~/git-test]$ git push origin master Counting objects: 3, done. Writing objects: 100% (3/3), 215 bytes, done. Total 3 (delta 0), reused 0 (delta 0) fatal: final sha1 did not match error: unpack failed: unpacker exited with error codeI think I had the same problem yesterday. Do you have fink installed? Specifically the openssl packages? Uninstalling those through fink and recompiling git did the trick for me, though I'm not sure what the real problem was. You should also be able to define NO_FINK as well (see the beginning of the Makefile). Good luck, Tarmigan
Thanks so much, that did the trick. I had to remove the openssl packages through fink and then recompile git. Now it works! Thanks, ~ Mark