📌  相关文章
📜  git 删除所有合并的分支 - Shell-Bash 代码示例

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

代码示例2
# Add this to your alias in .bashrc or .zshrc
# then run git-removed-merged-branches

alias git-removed-merged-branches="git branch --merged | egrep -v '(^\*|master|dev)' | xargs git branch -d"