Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Once upon a time, there was a file in my project that I would now like to be able to get.

The problem is I have no idea of when I deleted it.

How can I locate the specific commit when this file existed?

share|improve this question
Similar question here: stackoverflow.com/questions/7093602/… – eckes Aug 26 '11 at 11:04

3 Answers

up vote 46 down vote accepted

If you know the path the file was at, you can do this:

git log -- /path/to/file

This should show a list of commits which touched that file. Then, you can find the version of the file you want, and display it with...

git show <SHA> -- /path/to/file

(or restore it into your working copy with git checkout <SHA> -- /path/to/file)

share|improve this answer
2  
I tried git log -- /path/to/file and there was no output... :-( – Pedro Morte Rolo Aug 26 '11 at 10:48
3  
Did you change /path/to/file to be the actual path? – Amber Aug 26 '11 at 10:49
2  
Yes. Of course. – Pedro Morte Rolo Aug 26 '11 at 10:49
2  
Try using a relative path instead of an absolute one (if you aren't already). – Amber Aug 26 '11 at 11:45
4  
What if you don't know the exact path? All you know is the filename? – priestc Nov 16 '12 at 4:09
show 2 more comments

Try using one of the viewers, such as gitk so that you can browse around the history to find that half remembered file. (use gitk --all if needed for all branches)

share|improve this answer

Could not edit the accepted response so adding it as an answer here,

to restore the file in git, use the following (note the '^' sign just after the SHA)

git checkout <SHA>^ -- /path/to/file
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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