Skip to content

Instantly share code, notes, and snippets.

@wturnerharris
Created May 2, 2016 20:07
Show Gist options
  • Save wturnerharris/ba7571ce95a63ca93109844dffe0848c to your computer and use it in GitHub Desktop.
Save wturnerharris/ba7571ce95a63ca93109844dffe0848c to your computer and use it in GitHub Desktop.
Remove all your local git branches but keep master
#!/bin/bash
# from within git repo
git checkout 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