On Wed, 22 Oct 2008, Nicolas Ferre wrote: > Nicolas Pitre : > > On Wed, 22 Oct 2008, Nicolas Ferre wrote: > > > > > Hi all, > > > (please cc me on response) > > > > > > I am facing error during git status & git fsck on my tree. > > > This tree is cloned from various linux kernel trees. > > > > > > Here are a sample of the error I see : > > > > > > $ git fsck > > > error: packfile > > > .git/objects/pack/pack-2ab31ad1f8cb69d091a56fe936634e4796606d49.pack does > > > not > > > match index > > > error: packfile > > > .git/objects/pack/pack-2ab31ad1f8cb69d091a56fe936634e4796606d49.pack > > > cannot be > > > accessed > > [...] > > > > What git version? > > $ git --version > git version 1.5.3.7 OK. Since this is not bleeding edge, it is pretty unlikely that the corruption is due to git itself. Furthermore, the git packs are always read only once they've been created, meaning that if they weren't corrupted at some point then something outside of git caused the corruption. You really should consider the possible causes for that (dying disk, pilot error, etc). As to recovery... That really depends if you have personal work committed to your repository. If not then the easiest solution is simply to recreate it by refetching from upstream. If you have personal work in there then you could try to fetch your work branch into the newly created repository. The latest git version could help with the extraction of non-corrupted objects out of a bad pack, but if the objects you are interested in are themselves corrupted then your only hope is to have a copy of those objects somewhere else. Nicolas -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html