Skip to content

Instantly share code, notes, and snippets.

@jserpapinto
Created June 5, 2020 09:33
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 jserpapinto/0d567ebd3264f8e4e6e36e83f56a2c8f to your computer and use it in GitHub Desktop.
Save jserpapinto/0d567ebd3264f8e4e6e36e83f56a2c8f to your computer and use it in GitHub Desktop.
GIT - Remove tracking branches no longer 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