I have following working tree state

$ git status foo/bar.txt
# On branch master
# Unmerged paths:
#   (use "git reset HEAD <file>..." to unstage)
#   (use "git add/rm <file>..." as appropriate to mark resolution)
#
#       deleted by us:      foo/bar.txt
#
no changes added to commit (use "git add" and/or "git commit -a")

File foo/bar.txt is there and I want to get it to the "unchanged state" again (similar to 'svn revert'):

$ git checkout HEAD foo/bar.txt
error: path 'foo/bar.txt' is unmerged
$ git reset HEAD foo/bar.txt
Unstaged changes after reset:
M       foo/bar.txt

Now it is getting confusing:

$ git status foo/bar.txt
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       new file:   foo/bar.txt
#
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#       modified:   foo/bar.txt
#

The same file in both sections, new and modified? What should I do? Thanks in advance.

link|improve this question
feedback

3 Answers

up vote 24 down vote accepted

You did it the wrong way around. You are meant to reset first, to unstage the file, then checkout, to revert local changes.

Try this:

$ git reset foo/bar.txt
$ git checkout foo/bar.txt
link|improve this answer
Thanks; worked like a charm! I had to commit (not with the -a arg, the relevant changes were already staged) and then I was able to push/pull like normal. – Patrick Jan 7 '11 at 3:41
3  
For me it required a: <br/> $ git reset -- foo/bar.txt <br/> $ git checkout -- foo/bar.txt <br/> (Notice the extra "--" in between) – Jan Aug 9 '11 at 17:37
For me, git reset resets all files, not just the listed one.. Did I do something wrong? – Zds Mar 6 at 13:28
feedback
git checkout foo/bar.txt

did you tried that? (without a HEAD keyword)

I usually revert my changes this way.

link|improve this answer
feedback

I find git stash very useful for temporal handling of all 'dirty' states.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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