Is there a Git command that can be used to determine if a merge is in-process (i.e. uncommitted)? I know I can simply check for .git/MERGE_HEAD, but is this pr
.git/MERGE_HEAD
you can run git status
git status
git will tell you what happening in your repository.
E.g. * conflicting files (unmerged files)