Skip to content

Instantly share code, notes, and snippets.

@luisuribe
Created June 16, 2020 16:56
Show Gist options
  • Save luisuribe/842964a8f63693d0f5648d787f788854 to your computer and use it in GitHub Desktop.
Save luisuribe/842964a8f63693d0f5648d787f788854 to your computer and use it in GitHub Desktop.
git_commands_i_always_forgot.txt
# delete merged branches
git branch --merged | egrep -v "(^\*|master|dev)" | xargs git branch -d
git branch -r --merged | grep -v master | 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