带通配符扩展的Git命令

时间:2011-09-21 17:59:07

标签: git wildcard

  

可能重复:
  Can you delete multiple branches in one command with Git?

我正在尝试清除我的git仓库中的旧功能分支,我发现自己正在输入

git branch -d SOME_BRANCH_NAME 

表示每个分支名称。 git是否支持任何类型的通配符扩展,因此我可以指定类似:

git branch -d temp_branch_* 

感谢

1 个答案:

答案 0 :(得分:24)

嗯,在最坏的情况下,你可以:

git branch | grep temp_branch | xargs git branch -d