Skip to content

Instantly share code, notes, and snippets.

@khoatran
Last active October 5, 2016 07:51
Show Gist options
  • Save khoatran/cba180044364f90526c9f016e6c2e9de to your computer and use it in GitHub Desktop.
Save khoatran/cba180044364f90526c9f016e6c2e9de to your computer and use it in GitHub Desktop.
Git - delete redundant remote branches merged to master and keep important branches
git branch -r --merged | grep -v '\*\|master\|dev\|DTP-263' | sed 's/origin\///' | xargs -n 1 git push --delete origin
#The syntax to put branch to keep: \|branch-name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment