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.

link|improve this question

2  
Good question... but a follow-up might be, is there any way to restore JUST that 1 file? – Jeff Fritz Jun 5 '09 at 12:38
4  
I think git-revert only does whole commits. Try `git checkout $BADCOMMIT^ myfile'. – Josh Lee Jun 18 '09 at 19:42
I used git checkout HEAD^ foo.bar and it worked swimmingly :) – CubanX Apr 26 '11 at 15:30
7  
$ git checkout deletedFile, no-one has clearly stated this?! Answer to the title for future googlers... – hhh Dec 15 '11 at 15:23
3  
note that the previous comment answers the question in the title, not in the body -- that includes finding out when the file was deleted. – avdgaag Dec 16 '11 at 16:02
show 1 more comment
feedback

5 Answers

up vote 335 down vote accepted

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|improve this answer
This checking out of a given file is awesome, thanks! – avdgaag Jul 11 '09 at 9:25
4  
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 '09 at 13:17
4  
The tricky bit is to checkout the commit BEFORE, using the ^ suffix. Thanks. – Christian Oudard Apr 26 '10 at 14:40
1  
@Ranman: It means "first parent of". – Charles Bailey Apr 22 '11 at 19:38
2  
This is the best answer on all of stackoverflow. – dmackerman Dec 19 '11 at 21:36
show 10 more comments
feedback
  1. Use git log --diff-filter=D --summary to get all the commits which have deleted files and the files deleted;
  2. Use git checkout $commit~1 filename to restore the deleted file.
link|improve this answer
9  
The --diff-filter=D bit is genius. Thanks! – avdgaag Jun 4 '09 at 23:15
You're welcome. Enjoy the resurrections :-) – Robert Munteanu Jun 4 '09 at 23:29
10  
My solution's much more fun. – Josh Lee Jun 5 '09 at 1:13
@jleedev - it's innovative, that's for sure. – Robert Munteanu Jun 5 '09 at 9:09
I used a combination of the first step of this answer and the second step of Charles' answer. – Tobias Cohen May 9 '11 at 0:49
show 3 more comments
feedback

If you’re insane, 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|improve this answer
Could you elaborate on git bisect run '[ -e foo.bar ]'? – avdgaag Jun 4 '09 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. – Josh Lee Jun 4 '09 at 23:00
It's not the easiest solution, but it is quite impressive. Thanks for the write-up. – avdgaag Jun 5 '09 at 15:19
AWESOME Thank you for this! – Benxamin Mar 28 '11 at 18:25
feedback

To restore all those deleted files in a folder enter the following command.

 "git ls-files -d | xargs git checkout --"
link|improve this answer
Nice! Does what it says on the tin. :) – Drew Aug 11 '11 at 15:31
feedback

I've got this solution.

  1. Get the id of the commit where the file was deleted using one of the ways below.

    • git log --grep=word
    • git log -Sword
    • git log | grep --context=5 word
    • git log --stat | grep --context=5 word # recommended if you hardly remember anything
  2. You should get something like:

commit bfe68bd117e1091c96d2976c99b3bcc8310bebe7 Author: Alexander Orlov Date: Thu May 12 23:44:27 2011 +0200

replaced deprecated GWT class
- gwtI18nKeySync.sh, an outdated (?, replaced by a Maven goal) I18n generation script

commit 3ea4e3af253ac6fd1691ff6bb89c964f54802302 Author: Alexander Orlov Date: Thu May 12 22:10:22 2011 +0200

3. Now using the commit id bfe68bd117e1091c96d2976c99b3bcc8310bebe7 do:

git checkout bfe68bd117e1091c96d2976c99b3bcc8310bebe7^1 yourDeletedFile.java

As the commit id references the commit where the file was already deleted you need to reference the commit just before bfe68b which you can do by appending ^1. This means: give me the commit just before bfe68b.

link|improve this answer
This is the same approach as the accepted answer, but with some more ways to find the deleting commit. I still like the approach taken in the accepted answer, but these are good alternatives. Thanks! – avdgaag Mar 14 at 10:22
feedback

Your Answer

 
or
required, but never shown

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