So I created a remote repo that's not bare (because I need redmine to be able to read it), and it's set to be shared with the group (so git init --shared=group). I was able to push to the remote repo and now I'm trying to clone it.

If I clone it over the net I get this:

remote: Counting objects: 4648, done.

remote: Compressing objects: 100% (2837/2837), done.

error: git-upload-pack: git-pack-objects died with error.B/s

fatal: git-upload-pack: aborting due to possible repository corruption on the remote side.

remote: aborting due to possible repository corruption on the remote side.

fatal: early EOF

fatal: index-pack failed

I'm able to clone it locally without a problem, and I ran "git fsck", which only reports some dangling trees/blobs, which I understand aren't a problem. What could be causing this? I'm still able to pull from it, just not clone. I should note the remote git version is 1.5.6.5 while local is 1.6.0.4

I tried cloning my local copy of the repo, stripping out the .git folder and pushing to a new repo, then cloning the new repo and I get the same error, which leads me to believe it may be a file in the repo that's causing git-upload-pack to fail...

Edit: I have a number of windows binaries in the repo, because I just built the python modules and then stuck them in there so everyone else didn't have to build them as well. If I remove the windows binaries and push to a new repo, I can clone again, perhaps that gives a clue. Trying to narrow down exactly what file is causing the problem now.

link|improve this question

61% accept rate
just FYI, cloning locally just do hardlinks, so it may not do index-pack or check for error. – J-16 SDiZ Jan 21 '11 at 2:26
feedback

4 Answers

Does "git gc" complain?

link|improve this answer
Nope, seems to work just fine. – gct Dec 22 '09 at 15:34
I don't know how, but running that command first fixed it for me. – Derek Dahmer Jul 30 '10 at 20:52
feedback

I also had problems with cygwin git, the error: fatal: index-pack failed

I was able to solve it by creating a mount for my projects and setting it to binary mode. since my /c is set to text mode.

Add cygwin's to /etc/fstab
c:/work/Projects /projects some_fs binary 0 0

run: "mount -a" to mount

You need to be in /projects to work with cygwin git, /c/work/Projects will fail.

Not sure if this will work for you.

link|improve this answer
feedback

I have the same question as you.

The error message when I clone is like:

Cloning into test...
remote: Counting objects: 6503, done.
remote: Compressing objects: 100% (4519/4519), done.
Connection to git.myhost.im closed by remote host.| 350 KiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

I spent a few time to find the reason. In my case, the reason is that my git server's memory is too small and my repository is too large. There's only 128M total memory of my git server and my repository is more than 200M. When I clone from the git server, I use command top on my server. the top command shows that memory is soon over 128M.

When I use another server that has 4G memory, the git clone is all ok.

I hope this is help to you.

link|improve this answer
feedback

it seems to be a bug with cygwin, if you retry it might work.

link|improve this answer
yep, retry and it might work... it seems to fail less over https for some reason in my case – Gabo Esquivel Mar 15 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.