Skip to content

Instantly share code, notes, and snippets.

@Tuan-T-Nguyen
Created July 23, 2019 01:34
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 Tuan-T-Nguyen/3b25b1f9b798327a10e1382458c7742c to your computer and use it in GitHub Desktop.
Save Tuan-T-Nguyen/3b25b1f9b798327a10e1382458c7742c to your computer and use it in GitHub Desktop.
Remove tracking branches no longer on remote
// Source: https://stackoverflow.com/a/33548037
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