Skip to content

Instantly share code, notes, and snippets.

@MyklClason
Last active February 24, 2016 02:59
Show Gist options
  • Save MyklClason/4a4e554fe2a22cfe685e to your computer and use it in GitHub Desktop.
Save MyklClason/4a4e554fe2a22cfe685e to your computer and use it in GitHub Desktop.
Delete all local branches
# Safer delete all
git branch | grep -v "master" | xargs git branch -d
# Delete all
# Source: 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