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.

Given the following interaction:

$ git add foo 
$ git commit -m "Initial import of 'foo'"
$ rm foo # This could be any destructive action on foo, like editing it.

How do I restore 'foo' in my working copy? I'm looking for something like:

$ git <magic> foo
Restored foo to revision <blah>.
share|improve this question

6 Answers

up vote 95 down vote accepted
git checkout -- foo

That will reset foo to HEAD. You can also:

git checkout HEAD^ foo

for one revision back, etc.

share|improve this answer
I'd suggest using syntax git checkout -- foo to avoid any mistakes if foo is anything special (like a directory or a file called -f). With git, if you're unsure, always prefix all files and directories with the special argument --. – Mikko Rantalainen Mar 18 at 7:22
@MikkoRantalainen: Thanks, I wrote this answer when I was still new to Git myself! – Greg Hewgill Mar 18 at 7:47

@Greg Hewgill

Amusingly, 'git checkout foo' will not work if the working copy is in a directory named foo; however, both 'git checkout HEAD foo' and 'git checkout ./foo' will:

$ pwd
/Users/aaron/Documents/work/foo
$ git checkout foo
D   foo
Already on "foo"
$ git checkout ./foo
$ git checkout HEAD foo
share|improve this answer
16  
or git checkout -- foo – knittl Mar 7 '10 at 16:34
1  
I think I love Git so much because its UI has no surprises whatsoever and makes total sense, even to newbies. – Benjamin Pollack Apr 21 '11 at 19:42
RE: "... if the working copy is in a directory named foo": Shouldn't this be "if the repository contains a ref named foo" (in your example case, a branch named foo)? git checkout works for me in a directory named foo if there's no ref of the same name. – Max Nanasy Aug 30 '12 at 21:53
I realize now that @DamienDiederen already told you this in his answer. – Max Nanasy Aug 30 '12 at 22:23

@zacherates Isn't that because you have a branch named foo in that repository? Recent versions of Git would tell you about the ambiguity. In the meantime, using ./foo is probably the easiest way to resolve it.

Note, however, that git checkout ./foo and git checkout HEAD ./foo are not exactly the same thing; case in point:

$ echo A > foo
$ git add foo
$ git commit -m 'A' foo
Created commit a1f085f: A
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 foo
$ echo B >> foo
$ git add foo
$ echo C >> foo
$ cat foo
A
B
C
$ git checkout ./foo
$ cat foo
A
B
$ git checkout HEAD ./foo
$ cat foo
A

(The second add stages the file in the index, but it does not get committed.)

Git checkout ./foo means revert path ./foo from the index; adding HEAD instructs Git to revert that path in the index to its HEAD revision before doing so.

share|improve this answer

Use git log to obtain the hash key for specific version and then use git checkout <hashkey>

Note: Do not forget to type the hash before the last one. Last hash points your current position (HEAD) and changes nothing.

share|improve this answer

Obviously someone either needs to write an intelligible book on git, or git needs to be better explained in the documentation. Faced with this same problem I guessed that

cd <working copy>
git revert master

would undo the last commit which is seemed to do.

Ian

share|improve this answer

It seems that

for i in `git checkout`; do git checkout $i; done

is the easy (mega-dirty) answer if you want all files reverted.

share|improve this answer
6  
git checkout HEAD . – wRAR Mar 7 '10 at 16:46
1  
git reset --hard removes all changes in the working dir and the index. – David Schmitt Dec 30 '10 at 9:20
hmm what about removing all the ?? (not tracked files too?) – finneycanhelp Mar 15 '11 at 3:00
these things should roll off after n - votes – Rob Sep 5 '11 at 17:52

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.