Skip to content

Instantly share code, notes, and snippets.

@mshjri
Created August 25, 2019 06:18
Show Gist options
  • Select an option

  • Save mshjri/76e896ce261dbcac105da90a2c8676a6 to your computer and use it in GitHub Desktop.

Select an option

Save mshjri/76e896ce261dbcac105da90a2c8676a6 to your computer and use it in GitHub Desktop.
Remove local branches that have gone from remotes scrpit
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