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.
|
Is there any way I can repair my repository with commit history in tact.
From reading the link below it looks like I'll have zap it and start over. |
|||
|
|
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). |
|||||||
|
|
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.
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:
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 |
|||||
|
|
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. |
|||
|
|
|
Simply delete the corrupt object that git is complaining about. I was able to resolve the same issue just now this way.
For the above error, I was able to find corresponding object at:
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. |
|||||
|
|
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. |
|||
|