What I'm looking for is how to check a file during a git merge conflict. The situation I encountered today was during a git reboot that I had to manually merge the file and I messed it up. During normal use of git, I would just issue a git checkout myfile , and I tried this, but the file was still in the state in which I left it. What I wanted in this case is a file in the initial state of merging with conflict markers so that I can give it one more step. I ended up interrupting the replacement and retrying, but I would like something less decisive. What am I missing?
source share