Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Ryman/74bfb168d8e95926be4ed211930967ac to your computer and use it in GitHub Desktop.

Select an option

Save Ryman/74bfb168d8e95926be4ed211930967ac to your computer and use it in GitHub Desktop.
delete all local local branches which have been deleted from remote
git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment