Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save davidjeddy/a6c8c61ea33a8f96ea146b7e070d6643 to your computer and use it in GitHub Desktop.
Save davidjeddy/a6c8c61ea33a8f96ea146b7e070d6643 to your computer and use it in GitHub Desktop.
Remove all your local git branches but keep master
$ git branch | grep -v "master" | xargs git branch -D
---or as a bash alias---
alias gitcb="git branch | grep -v "master" | xargs git branch -D"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment