generated from cotes2020/chirpy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
delete all branches except master with Windows Powershell
git branch | Select-String -NotMatch -Pattern "master" | %{ git branch -D $_.ToString().Trim() }delete all branches except main with Windows Powershell
git branch | Select-String -NotMatch -Pattern "main" | %{ git branch -D $_.ToString().Trim() }Metadata
Metadata
Assignees
Labels
No labels