What does ‘git merge –abort is equivalent to git reset –merge when MERGE_HEAD is present.’ of Git merge man page mean?
I guess MERGE_HEAD is only present when a merge is in progress which also is the case when I am resolving conflicts. Correct. Git knows that a git merge is happening (and has not yet finished) because that file exists. (That there are, or at least were, conflicts is usually how you got there. You may or may not have resolved … Read more