Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way I can repair my repository with commit history in tact.

 # git log
fatal: object 01aeb2bf2e93b238f0e0422816b3e55518321ae7 is corrupted

From reading the link below it looks like I'll have zap it and start over.

http://www.miek.nl/s/7e76eadefe/

share|improve this question
I should add that the root cause of this was disk corruption on my virtual machine, which wasn't shutting down correctly. – Keyo Apr 26 '11 at 21:12

5 Answers

up vote 8 down vote accepted

Do you have clones of this repository elsewhere? You might want to read this post by Linus Torvalds to restore that corrupted object, assuming the corrupted object is a blob (file contents).

share|improve this answer
No clones. I just set this up yesterday. So I only had 10 commits. I ended up starting fresh. But will definitely push it somewhere else at the end of every day. Lesson learned. Still glad to be off svn. Git is fast! – Keyo May 26 '10 at 0:36
2  
Would be helpful to include the gist of the post in your answer, just incase, say, kernal.org ever gets hacked and is offline :( – SpoonMeiser Sep 12 '11 at 9:08

I wound up in the same situation, probably due to an improper shutdown of the virtual machine I was working in. There were approximately 10 objects in .git/objects that had zero length. As far as I can tell, the actual source code files were fine, just the repository was hosed.

$ git status
fatal: object fbcf234634ee04f8406cfd250ce5ab8012f92b08 is corrupted

Per some suggestions I saw elsewhere (including Linus's post referenced above), I tried temporarily moving the corrupted objects git was complaining about from .git/objects elsewhere. When had moved all of them, I got:

$ git status
fatal: bad object HEAD

After about an hour of Googling and trying various solutions, I gave up and started a new working copy using 'git clone' to pull from the origin (which was about 2 hours behind my working copy). I then used rsync -rC (-C excludes SCM files) to copy the changed files from the messed-up working copy to my new working copy.

share|improve this answer
Thanks! seems to work for me. disaster averted. – DevX Jun 18 '11 at 2:32
Same thing here VM corruption. rsync worked perfectly - nothing lost, just the log which was easy to recreate. Thanks! – Richard Hollis Aug 22 '12 at 10:23

You could also try to restore these objects by merely copying them from other repositories.

My virtual machine crashed while recording a pushed commit, so the objects were safely stored on a local computer. I scp'ed them to virtual machine and voila — git fsck outputs no errors.

share|improve this answer

Simply delete the corrupt object that git is complaining about. I was able to resolve the same issue just now this way.

fatal: object 985a4870e7d890b314d2794377045a8b007c7925 is corrupted

For the above error, I was able to find corresponding object at:

project_directory/.git/objects/98/5a4870e7d890b314d2794377045a8b007c7925

Where you can see the file is 0 bytes and deleting it allowed the fetch to start working.

Presumably the previous fetch was interrupted, leaving the corrupt object with size = 0 bytes.

share|improve this answer
bizarre that this actually works, kind of like kicking the TV to clear up the static! – peter karasev Nov 20 '12 at 19:28
Didn't work for me and it sounds like a bad idea considering Torvalds' several page instruction on how to fix the corrupt object (listed above in the answer). – Ain Tohvri Dec 21 '12 at 1:32

same problem here,

in fact this is the 3rd time i had to nuke and make a fresh new clone from the repo, and copy over the modified files.

and this are just two of many cryptic errors iv'e seen over past 6 months or so of using it.

Keeping in mind i use git for light weight personal projects with 0 additional collaborators, this is really bad. Collectively i've lost over a week just figuring out how to deal with these issues that seem to spring up all the time. I've never really had problems using Subversion, Svn, or Perforce...

I find this to be too much of a hindrance on my already limited development time, and will not be using git for future projects.

share|improve this answer
One thing I learned from my experience was to always keep a backup somewhere. I just push to another repo. However now I've figured out how to shutdown my VM properly it doesn't happen anymore. Something is corrupting your data, find out what. Other systems don't have the same secure sha1 hash as git, so I'm not surprised they don't pick up on data corruption. – Keyo Nov 25 '10 at 21:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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