windows 下批量删除git 分支

Posted zinan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 下批量删除git 分支相关的知识,希望对你有一定的参考价值。

删除筛选出来的分支,比如fixed

git branch -D @(git branch | select-string  "fixed" | Foreach $_.Line.Trim())

 

除了master分支,其他都删除

git branch -D @(git branch | select-string -NotMatch "fixed" | Foreach $_.Line.Trim())

更多请看:https://dev.to/koscheyscrag/git-how-to-delete-all-branches-except-master-2pi0

以上是关于windows 下批量删除git 分支的主要内容,如果未能解决你的问题,请参考以下文章

批量删除git 本地分支远程分支tag

批量删除git 本地分支远程分支tag

批量删除git 本地分支远程分支tag

批量删除git 本地分支远程分支tag

git批量删除本地分支及远程分支

git清理远程分支