I have a Windows box which has taken it into it's head to delete most of a Git repository (must have tripped the Important Work Detector ;). All I have left (that I can find) is the objects. I'm not sure how complete the collection of objects is, either. Is it possible to recover things from just the objects? As far as I can tell, the object tree is intact. All the packs and loose objects are in place; I just don't have the metadata to convince Git.
|
The first thing that I would try is to initialize a new repository with With some luck you'll see a whole lot of dangling objects and with a bit more luck some of the dangling objects will be commit objects which will be the tips of lost branches. If you run To "recover" them you can just use |
|||||||||
|
|
If you haven't already tried |
|||
|
|
try using this post How to recover Git objects damaged by hard disk failure? that answer may have some *nix related info. Let me know if it helps. Ill see what it does. |
|||||||||||
|
ls repo.gitgives 'objects' only. – Jashank Apr 23 '11 at 23:19git show -s– Volure DarkAngel Apr 23 '11 at 23:27fatal: Not a git repository. – Jashank Apr 23 '11 at 23:29