Skip to content

Instantly share code, notes, and snippets.

@vokiel
Created August 27, 2017 19:07
Show Gist options
  • Save vokiel/b18621c600c859c680e82c189cb248ae to your computer and use it in GitHub Desktop.
Save vokiel/b18621c600c859c680e82c189cb248ae to your computer and use it in GitHub Desktop.
Remove local branches which are not in the remote
#!/bin/sh
# Remove local branches
# which are not in the 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