只需获取 git 中我当前分支上发生的合并列表
Just get list of merge happened on my current branch in git
在 Git 中有什么方法可以只列出所有分支合并提交吗?
我尝试使用 git reflog
,它确实显示提交和
<commit number> HEAD@{2}: commit (merge): merge with feature/unification
使用(合并)字符串是否足以检测分支合并?
我想你正在寻找
git log --merges
--merges
Print only merge commits. This is exactly the same as
--min-parents=2
.
在 Git 中有什么方法可以只列出所有分支合并提交吗?
我尝试使用 git reflog
,它确实显示提交和
<commit number> HEAD@{2}: commit (merge): merge with feature/unification
使用(合并)字符串是否足以检测分支合并?
我想你正在寻找
git log --merges
--merges
Print only merge commits. This is exactly the same as
--min-parents=2
.