vote up 8 vote down star
5

Say I'm in a Git repository. I delete a file and commit that change. I continue working and make some more commits. Then, I find I need to restore that file.

I know I can checkout a file using git checkout HEAD^ foo.bar, but I don't really know when that file was deleted.

  1. What would be the quickest way to find the commit that deleted a given filename?
  2. What would be the easiest way to get that file back into my working copy?

I'm hoping I don't have to manually browse my logs, checkout the entire project for a given SHA and then manually copy that file into my original project checkout.

flag

1  
Good question... but a follow-up might be, is there any way to restore JUST that 1 file? – Jeff Fritz Jun 5 at 12:38
I think git-revert only does whole commits. Try `git checkout $BADCOMMIT^ myfile'. – jleedev Jun 18 at 19:42

4 Answers

vote up 12 vote down check
  1. Use git log --diff-filter=D --summary to get all the commits which have deleted files and the files deleted;
  2. Use git revert $commit to revert that particular commit.
link|flag
The --diff-filter=D bit is genius. Thanks! – avdgaag Jun 4 at 23:15
You're welcome. Enjoy the resurrections :-) – Robert Munteanu Jun 4 at 23:29
3  
My solution's much more fun. – jleedev Jun 5 at 1:13
@jleedev - it's innovative, that's for sure. – Robert Munteanu Jun 5 at 9:09
vote up 3 vote down

Find the last commit that affected the given path. As the file isn't in the HEAD commit, this commit must have deleted it.

git rev-list -n 1 HEAD -- <file_path>

Then checkout the version at the commit before.

git checkout <deleting_commit>^ -- <file_path>

Or in one command, if $file is the file in question.

git checkout $(git rev-list -n 1 HEAD -- "$file")^ -- "$file"
link|flag
This checking out of a given file is awesome, thanks! – avdgaag Jul 11 at 9:25
Agreed! The accepted answer will reapply the entire commit, but in my case, I just want to bring back one file. Thanks, Charles. – Pistos Sep 17 at 13:17
vote up 0 vote down

And what if commit where my file was deleted contains several deleted files but I need to restore the only one. All other should stay deleted. As I understand all deleted in commit files will be restored after revert. Is there some way to restore particular file in commit?

link|flag
2  
if commit_del is the identifier of the commit that deleted fileA then git checkout commit_del^ -- fileA will restore fileA to the index and working tree. You can then make a commit re-adding it. – Charles Bailey Jul 11 at 7:04
vote up 5 vote down

Use git-bisect. Here's what to do:

git bisect start
git bisect bad
git bisect good <some commit where you know the file existed>

Now it's time to run the automated test. The shell command '[ -e foo.bar ]' will return 0 if foo.bar exists, and 1 otherwise. The "run" command of git-bisect will use binary search to automatically find the first commit where the test fails. It starts halfway through the range given (from good to bad) and cuts it in half based on the result of the specified test.

git bisect run '[ -e foo.bar ]'

Now you're at the commit which deleted it. From here, you can jump back to the future and use git-revert to undo the change,

git bisect reset
git revert <the offending commit>

or you could go back one commit and manually inspect the damage:

git checkout HEAD^
cp foo.bar /tmp
git bisect reset
cp /tmp/foo.bar .
link|flag
Could you elaborate on git bisect run '[ -e foo.bar ]'? – avdgaag Jun 4 at 22:53
You can also use good and bad manually, if it's something that can't be checked automatically. See the bisect man page. – jleedev Jun 4 at 23:00
It's not the easiest solution, but it is quite impressive. Thanks for the write-up. – avdgaag Jun 5 at 15:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.