Git: não é possível desfazer alterações locais (erro: caminho… está imerso)

Eu tenho o seguinte estado da árvore de trabalho

$ 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")

Arquivofoo/bar.txt está lá e eu quero levá-lo ao "estado inalterado" novamente (semelhante ao '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

Agora está ficando confuso:

$ 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
#

O mesmo arquivo nas duas seções, novoe Modificado? O que devo fazer?

questionAnswers(5)

yourAnswerToTheQuestion