📌  相关文章
📜  未合并分支的列表 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:21.014000             🧑  作者: Mango

代码示例1
// those not in master
git branch --no-merged master

// those not in current HEAD
git branch --no-merged 
git branch -r --no-merged

// compare with origin
git branch -r --no-merged origin/master