he estado siguiente árbol de trabajoGit: no se puede deshacer los cambios locales (error: camino ... es sin combinar)
$ 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")
Archivo foo/bar.txt
está ahí y quiero conseguir que el "estado sin cambios" de nuevo (similar a '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
Ahora cada vez es más 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
#
El mismo archivo en ambas secciones, ne w y modificado? ¿Que debería hacer?
Me gustaría que alguien podría explicar cómo hemos llegado a esta situación, por eso * * sucede, y por qué funciona la solución. –