Last active
May 1, 2025 17:43
-
-
Save Steven-Harris/226fdef101f2418c687093645d429d1b to your computer and use it in GitHub Desktop.
clean up git branches (powershell)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch --list 'chore/*' 'feature/*' 'fix/*' 'dependabot/*' | ForEach-Object { git branch -D ($_).Trim() } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
linux