up vote 35 down vote favorite
11
share [g+] share [fb]

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>.
link|improve this question

80% accept rate
feedback

6 Answers

up vote 41 down vote accepted
git checkout foo

That will reset foo to HEAD. You can also:

git checkout HEAD^ foo

for one revision back, etc.

link|improve this answer
feedback

@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
link|improve this answer
8  
or git checkout -- foo – knittl Mar 7 '10 at 16:34
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
feedback

@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.

link|improve this answer
feedback

use git log to obtain the hash key for specific version and then type git checkout Do not forget to type the hash before the last one. Last hash points your current position (HEAD) and changes nothing.

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
5  
git checkout HEAD . – wRAR Mar 7 '10 at 16:46
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
feedback

Your Answer

 
or
required, but never shown

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