Skip to content

Instantly share code, notes, and snippets.

@emmanuelnk
Created July 4, 2019 08:17
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 emmanuelnk/21920860b2067878bb5520a7c2c9210c to your computer and use it in GitHub Desktop.
Save emmanuelnk/21920860b2067878bb5520a7c2c9210c to your computer and use it in GitHub Desktop.
Git: Clean out branches merged to master branch from local git repository (without deleting master branch)
git branch --merged master | grep -v "\master" | xargs -n 1 git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment