Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git corrupted repo: how to pick a git object from a clean repository

This is one of the numerous questions regarding a Git repo that is corrupted, precisely a loose object that went wrong:

$ git gc
Counting objects: 3299, done.
error: inflate: data stream error (unknown compression method)
error: unable to unpack 831a5d31af4a0af2f5a367689bee27a44efc22c9 header
Delta compression using up to 6 threads.
Compressing objects: 100% (3283/3283), done.
error: inflate: data stream error (unknown compression method)
fatal: loose object 831a5d31af4a0af2f5a367689bee27a44efc22c9 (stored in .git/objects/83/1a5d31af4a0af2f5a367689bee27a44efc22c9) is corrupt
error: failed to run repack

Following existing answers on the subject (How do I deal with corrupted git object files?, How to fix corrupted git repository?, or What can I do with Git corruption due to a missing object?) I already removed the object 831a5d31 from the corrupted repository.

In my case I have a clone of the repository, that seems to hold the object I'm missing, but there's no file at objects/83/1a5d31af4a0af2f5a367689bee27a44efc22c9. How can I do to fix my repository?

like image 383
CharlesB Avatar asked Aug 27 '14 12:08

CharlesB


1 Answers

If the file exists elsewhere

The object of the clean repository has been repacked, that's why it doesn't exist anymore as a file.

To restore it, first save it as a file, from the clean repository, with

git show 831a5d31af4a0af2f5a367689bee27a44efc22c9 > 831a5-file

Move 831a5-file in the corrupted repo, and run

git hash-object -w 831a5-file

Make sure that the SHA1 given in the output is 831a5d31af4a0af2f5a367689bee27a44efc22c9

This will store the object, and the repository is fixed!

If the file does not exist elsewhere

If the file doesn't exist elsewhere, i.e. the corruption occurred after commit but before you were able to push, there is a way to restore your repo and and re-commit the changes. See this answer to a related question.

like image 61
CharlesB Avatar answered Oct 12 '22 00:10

CharlesB