我遵循一个开发过程,即为每个新功能或故事卡创建一个新的本地分支。完成后,我合并到主分支,然后推。

随着时间的推移,由于懒惰或健忘,我最终会得到一个很大的本地分支列表,其中一些(如spike)可能还没有合并。

我知道如何列出我所有的本地分支,我知道如何删除一个分支,但我想知道是否有一个git命令,允许我删除我所有的本地分支?

下面是git分支——merged命令的输出。

user@machine:~/projects/application[master]$ git branch --merged
  STORY-123-Short-Description
  STORY-456-Another-Description
  STORY-789-Blah-Blah
* master

所有尝试删除grep -v \*列出的分支(根据下面的答案)都会导致错误:

error: branch 'STORY-123-Short-Description' not found.
error: branch 'STORY-456-Another-Description' not found.
error: branch 'STORY-789-Blah-Blah' not found.

我用的是:

git 1.7.4.1  
ubuntu 10.04  
GNU bash, version 4.1.5(1)-release  
GNU grep 2.5.4  

当前回答

删除所有分支,但保留“develop”和“master”等其他分支的更简单的方法如下:

git branch | grep -v "develop" | grep -v "master" | xargs git branch -D

非常有用!

其他回答

下面的脚本删除分支。使用和修改的风险由你自己承担,等等。

根据这个问题中的其他答案,我最终为自己编写了一个快速bash脚本。我称它为“gitbd”(git branch -D),但如果你使用它,你可以将它重命名为任何你想要的。

gitbd() {
if [ $# -le 1 ]
  then
    local branches_to_delete=`git for-each-ref --format '%(refname:short)' refs/heads/ | grep "$1"`
    printf "Matching branches:\n\n$branches_to_delete\n\nDelete? [Y/n] "
    read -n 1 -r # Immediately continue after getting 1 keypress
    echo # Move to a new line
    if [[ ! $REPLY == 'N' && ! $REPLY == 'n' ]]
      then
        echo $branches_to_delete | xargs git branch -D
    fi
else
  echo "This command takes one arg (match pattern) or no args (match all)"
fi
}

它将提供删除任何匹配模式参数的分支(如果传入),或者在不带参数的情况下调用所有本地分支。它还会给你一个确认步骤,因为我们在删除东西,这很好。

这有点愚蠢——如果没有与模式匹配的分支,它就不会意识到这一点。

一个示例输出运行:

$ gitbd test
Matching branches:

dummy+test1
dummy+test2
dummy+test3

Delete? [Y/n] 

我发现使用文本编辑器和shell更容易。

在shell中输入git checkout <TAB>。将显示所有本地分支。 复制它们到文本编辑器,删除那些你需要保留。 用空格替换换行。(在SublimeText中,这非常简单。) 打开shell,输入git branch -D <PASTE THE BRANCHES NAMES HERE>。

就是这样。

对于powershell,这将工作:

git branch --format '%(refname:lstrip=2)' --merged `
    | Where-Object { $_ -ne 'master' } `
    | ForEach-Object { git branch -d $_ }

没有一个答案能完全满足我的需求,所以我们开始吧:

git branch --merged | grep -E "(feature|bugfix|hotfix)/" | xargs git branch -D && git remote prune origin

这将删除所有以feature/, bugfix/或hotfix/开头合并的本地分支。然后,上游远程源被修剪(您可能必须输入密码)。

适用于Git 1.9.5。

删除所有本地git分支,但保留主

git branch | grep -v "main" | xargs git branch -D