Skip to content

Instantly share code, notes, and snippets.

@jesusabarca
Created September 3, 2019 15:33
Show Gist options
  • Save jesusabarca/01a232770023d2ed5bb92cd9ea9a4f7c to your computer and use it in GitHub Desktop.
Save jesusabarca/01a232770023d2ed5bb92cd9ea9a4f7c to your computer and use it in GitHub Desktop.
Deletes all branches except for staging.
# /bin/bash
git branch | grep -v staging | xargs -n1 git branch -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment