我刚刚将PR合并到master。
我想记录所有的合并提交。
那么,哪个git command
只为主分支提供合并提交?
使用合并标志
$ git log --merges
使用grep
$ git log | grep '^Merge:' -B 1 -A 5
这将向您显示合并提交的列表