Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alejandrofloresm/cf6c6263eeb3b7f2eb0cc39ce8eaa968 to your computer and use it in GitHub Desktop.
Save alejandrofloresm/cf6c6263eeb3b7f2eb0cc39ce8eaa968 to your computer and use it in GitHub Desktop.
Delete all branches except master in local
# Taken from:
# https://coderwall.com/p/x3jmig/remove-all-your-local-git-branches-but-keep-master
$ 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