Skip to content

Instantly share code, notes, and snippets.

@ericdouglas
Created May 12, 2020 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericdouglas/9f1ce4fbd02bbbfbe138179b05be9fec to your computer and use it in GitHub Desktop.
Save ericdouglas/9f1ce4fbd02bbbfbe138179b05be9fec 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
# src: https://coderwall.com/p/x3jmig/remove-all-your-local-git-branches-but-keep-master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment