Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ngtrieuvi92/7dc2535c500e6e93c69835c3e3121a0d to your computer and use it in GitHub Desktop.
Save ngtrieuvi92/7dc2535c500e6e93c69835c3e3121a0d to your computer and use it in GitHub Desktop.
Remove tracking branches no longer on remote #git #shel
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