Skip to content

Instantly share code, notes, and snippets.

@tazorax
Created November 2, 2023 15:16
Show Gist options
  • Save tazorax/af444a4cfae7ff9fb6153ca6831a4481 to your computer and use it in GitHub Desktop.
Save tazorax/af444a4cfae7ff9fb6153ca6831a4481 to your computer and use it in GitHub Desktop.
Clean local branches which does not exists anymore on remote
#!/bin/bash
git fetch -p && for branch in $(git for-each-ref --format '%(refname) %(upstream:track)' refs/heads | awk '$2 == "[gone]" {sub("refs/heads/", "", $1); 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