Skip to content

Instantly share code, notes, and snippets.

@ehartmann
Created September 18, 2017 14:43
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 ehartmann/4d499168968b1c2c7d9e81c0ed47b5d9 to your computer and use it in GitHub Desktop.
Save ehartmann/4d499168968b1c2c7d9e81c0ed47b5d9 to your computer and use it in GitHub Desktop.
Delete local git branches not existing in remote
git fetch --prune && git branch -r | awk '{print $1}' | egrep -v -f /dev/fd/0 <(git branch -vv | grep origin) | awk '{print $1}' | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment