Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BrandowBuenos/0b80ad21cd67e6c2010f6084e3883812 to your computer and use it in GitHub Desktop.
Save BrandowBuenos/0b80ad21cd67e6c2010f6084e3883812 to your computer and use it in GitHub Desktop.
Refresh git branchs
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