up vote 2 down vote favorite
share [g+] share [fb]

I used to be able to clone from my personal git repository but now i seem to be running into an error.

user:dev.site.com mikesilvis$ git clone { my ssh directory }
server@ipaddress's password: 

remote: Counting objects: 3622, done.
remote: Compressing objects: 100% (2718/2718), done.
error: git upload-pack: git-pack-objects died with error.  
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

It seems to be working however while I push files to the repository.

link|improve this question
3  
What happens if you download a copy of the repository and try cloning it locally? (i.e. using a local path instead of an ssh URL) If it works, I'd wonder whether the git installation on the remote server might be at fault. – David Zaslavsky Jun 4 '10 at 17:28
> fatal: git upload-pack: aborting due to possible repository corruption on the remote side. – gelraen Sep 29 '11 at 9:49
feedback

2 Answers

Did you checked the permissions?

For the git user (normally called git)?

See this

http://www.kernel.org/pub/software/scm/git/docs/everyday.html

link|improve this answer
feedback

Did you check whether your shell initialization doesn't generate any output in non-interactive mode. This is a typical reason for example that scp doesn't work (you could check if it does).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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