Pro Git
Pro Git Deberías notar la nueva línea "Recorded preimage for FILE" ahí adentro. Si no, debería verse exactamente como un conflicto de unión normal. En este punto, "rerere" puede decirnos algunas cosas. Normalmente, podrías ejecutar git status en este punto para ver todo lo que entró en conflicto:
$ git status # On branch master # Unmerged paths: # (use "git reset HEAD <file>..." to unstage) # (use "git add <file>..." to mark resolution) # # both modified: hello.rb #Sin embargo, "git rerere" también te dirá lo que ha registrado el estado pre-unión con git rerere status:
$ git rerere status hello.rbY git rerere diff mostrará el estado actual de la resolución - con lo que comenzaste a resolver y lo que has resuelto.