Skip to content

Instantly share code, notes, and snippets.

@joiggama
Created January 26, 2017 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joiggama/a5474bf5eb98b51467ca44f68a38f9e0 to your computer and use it in GitHub Desktop.
Save joiggama/a5474bf5eb98b51467ca44f68a38f9e0 to your computer and use it in GitHub Desktop.
My git tips & tricks

Git

Remove all merged branches:

$ git branch --merged | awk '{ print $NF }' | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment