git-annex/doc/forum/archaeology_of_deleted_files.mdwn

37 lines
1.3 KiB
Text
Raw Normal View History

2013-01-25 13:29:57 +00:00
Earlier this week, I somehow lost a ton of files from my annex -- by switching on the command line from indirect to direct mode while the assistant was running, I think. I'm not sure.
Anyway, by "lost" I mean "lost the symlinks to," because git-annex defaults to keeping content around till you tell it otherwise. So I still had the content in the repos on my two backup drives. All I needed was the symlinks back.
But how to figure out exactly what I lost and get it back?
I found that out here:
http://stackoverflow.com/questions/953481/restore-a-deleted-file-in-a-git-repo
Here's a magical formula you can use to find every single file deletion in the history of your repo:
2013-01-25 14:27:20 +00:00
git log --diff-filter=D --summary
2013-01-25 13:29:57 +00:00
That will give you every commit that deleted things, and what was deleted.
To bring back all the files deleted in a given commit, where COMMITHASH is the commit hash, use this command:
2013-01-25 14:27:20 +00:00
git checkout COMMITHASH^1 -- .
2013-01-25 13:29:57 +00:00
to bring back only a specific file:
2013-01-25 14:27:20 +00:00
git checkout COMMITHASH^1 -- path/to/file.txt
2013-01-25 13:29:57 +00:00
to bring back only a subdirectory:
2013-01-25 14:27:20 +00:00
git checkout COMMITHASH^1 -- sub/directory
2013-01-25 13:29:57 +00:00
that will bring them back into the staging area. You can see which ones just reappeared by typing:
2013-01-25 14:27:20 +00:00
git status
2013-01-25 13:29:57 +00:00
then you can actually make the restore permanent by typing:
2013-01-25 14:27:20 +00:00
git commit -m "I just resurrected some files"
2013-01-25 13:29:57 +00:00