Skip to content

Instantly share code, notes, and snippets.

@navidcy
Created March 9, 2018 16:00
Show Gist options
  • Save navidcy/b7723dc9582383282ec59434b039c6bc to your computer and use it in GitHub Desktop.
Save navidcy/b7723dc9582383282ec59434b039c6bc to your computer and use it in GitHub Desktop.
delete local git branch that are not on remote
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