How to determine if Git merge is in process

后端 未结 5 1507
轻奢々
轻奢々 2020-12-09 09:30

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

5条回答
  •  无人及你
    2020-12-09 10:16

    git status

    you can run git status

    git will tell you what happening in your repository.

    E.g. * conflicting files (unmerged files)

提交回复
热议问题