やったこと
git show-branch
を使い、ブランチの状態を見ます
確認環境
$ git --version
git version 2.17.2 (Apple Git-113)
調査
test1
ブランチに test2
をマージされているとします。
コマンドを実行すると、下記のようになりました。
$ git show-branch
! [master] add
* [test1] Merge branch 'test2' into test1
! [test2] a
---
- [test1] Merge branch 'test2' into test1
*+ [test2] a
* [test1^] t
+*+ [master] add
test1
ブランチに、マージコミット以外があった場合、気づくことが出来るかと思います。