Skip to content

Instantly share code, notes, and snippets.

@turgay
Created November 12, 2018 19:52
Show Gist options
  • Save turgay/b52c5711d764423e5c2fb53a9996715f to your computer and use it in GitHub Desktop.
Save turgay/b52c5711d764423e5c2fb53a9996715f to your computer and use it in GitHub Desktop.
Prune all branches locally not existing in remote in Git:
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