powershell Powershell:删除过时的本地Git跟踪分支

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Powershell:删除过时的本地Git跟踪分支相关的知识,希望对你有一定的参考价值。

# Description

This example can be used as is. Just copy and paste it to your Powershell and it will delete all local orphaned tracking branches.

# References

* [Erik Aybar: Git Tip: Deleting Old Local Branches][erikaybar-2017]

[erikaybar-2017]: <http://erikaybar.name/git-deleting-old-local-branches/> "Erik Aybar: Git Tip: Deleting Old Local Branches"
git branch -vv|select-string "\[origin/(.*): gone\]"|%{$_.matches.groups[1].value}|%{git branch -D $_}

以上是关于powershell Powershell:删除过时的本地Git跟踪分支的主要内容,如果未能解决你的问题,请参考以下文章

powershell 使用powershell #powershell从zip文件中删除文件

powershell 删除powershell中的交接点

powershell Powershell:删除Git工作树

powershell PowerShell删除Readonly

powershell Powershell:删除过时的本地Git跟踪分支

powershell 在Gac中安装/删除dll - Powershell