Skip to content

Instantly share code, notes, and snippets.

@ederchrono
Created November 22, 2018 03:04
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 ederchrono/053181db0d3a7af1bd182f12d47d1685 to your computer and use it in GitHub Desktop.
Save ederchrono/053181db0d3a7af1bd182f12d47d1685 to your computer and use it in GitHub Desktop.
Cleans the local branches to have only the remote active branches
git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment