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.

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.

share|improve this question

4 Answers

up vote 62 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
share|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
5  
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 '12 at 13:28
1  
The good syntax is "git reset HEAD file1 file2 ..." then "git checkout -- file1 file2..." – Thomas Decaux Jul 18 '12 at 13:26
1  
It's always amusing when the highest voted answer basically just says "you're doing it wrong" :) – FerretallicA Dec 16 '12 at 23:39
git checkout foo/bar.txt

did you tried that? (without a HEAD keyword)

I usually revert my changes this way.

share|improve this answer
Typical error when trying a checkout in the midst of a merge: $ git co path/to/file =result=> error: path 'path/to/file' is unmerged => so, first run: $ git reset path/to/file, and then the git checkout path/to/file should work. – michael_n Feb 12 at 5:37

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

share|improve this answer
stash doesn't work once you have unmerged changes – Rob Jan 20 at 2:11
git checkout origin/[branch] .
git status

// Note dot (.) at the end. And all will be good

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.