$ git pull

remote: fatal: object 21f3981dd35fccd28febabd96f27241eea856c50 is corrupted
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: protocol error: bad pack header

Any ideas why this is failing?
When I run git --bare fsck-objects --full I just see dangling links but no broken links. Also git gc didn't help in any way. When I reclone or do pull from another clone, I don't see this error.

link|improve this question

48% accept rate
2  
Are you running git fsck on the remote? If not, it has no bearing on the error - that's an object on the remote side, and fsck in your repo examines the objects in your repo. It doesn't have any way to see the ones in the remote. – Jefromi Nov 13 '10 at 1:03
yes am running "git fsck" in the remote bare repository. – Senthil A Kumar Nov 13 '10 at 1:43
3  
Try git fsck --full 21f3981 ; git repack on the remote. If this occur again, check your firewall. – J-16 SDiZ Nov 13 '10 at 2:41
Thanks a ton Jefromi & J-16SDiZ for the information, unfortunately am not able to reproduce the error, this time a pull worked and i did nothing. Will try out the above steps when i get this error again. – Senthil A Kumar Nov 16 '10 at 20:09
1  
I had the same problem with bitbucket. git fsck does the trick. Thanks. – Etile Ved Feb 29 at 0:00
feedback

1 Answer

It appears the answer is in the comments: git fsck

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.