Created
September 9, 2021 08:59
-
-
Save ukcoderj/4835e9c83922807ac711a01fb90988de to your computer and use it in GitHub Desktop.
Delete All Branches Except Master Windows
This file contains 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
#The command to delete all branches except master on linux is: | |
#git branch | grep -v "master" | xargs git branch -D | |
#To use the same command in Windows use powershell and CD to your repo | |
#Or, WINDOWS - we can use PowerShell command that do the same thing that above command do: | |
# Tried this and it worked nicely... | |
git branch | %{ $_.Trim() } | ?{ $_ -ne 'master' } | %{ git branch -D $_ } | |
#or WINDOWS - | |
#git branch -D @(git branch | select-string -NotMatch "master" | Foreach {$_.Line.Trim()}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment