Skip to content

Instantly share code, notes, and snippets.

@khoatran
Created June 2, 2017 04:49
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 khoatran/3e4b0aec249fb309cf7980487bc210c8 to your computer and use it in GitHub Desktop.
Save khoatran/3e4b0aec249fb309cf7980487bc210c8 to your computer and use it in GitHub Desktop.
Git - delete 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment