Git: can't undo local changes (error: path … is unmerged)

两盒软妹~` 提交于 2019-12-17 17:18:53

问题


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?


回答1:


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



回答2:


This worked perfectly for me:

$ git reset -- foo/bar.txt
$ git checkout foo/bar.txt



回答3:


git checkout origin/[branch] .
git status

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




回答4:


git checkout foo/bar.txt

did you tried that? (without a HEAD keyword)

I usually revert my changes this way.




回答5:


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



来源:https://stackoverflow.com/questions/3021161/git-cant-undo-local-changes-error-path-is-unmerged

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!