Skip to content

Instantly share code, notes, and snippets.

@karimkod
Created November 26, 2024 09:34
Show Gist options
  • Save karimkod/0464547201a64b45d1c42ff5e07d0ee8 to your computer and use it in GitHub Desktop.
Save karimkod/0464547201a64b45d1c42ff5e07d0ee8 to your computer and use it in GitHub Desktop.
A Powershell command to remove local git branches that don't have a matching remote branch.
git fetch -p && git branch -vv | Select-String -Raw "gone" | %{ git branch -D ($_.Split(" ")[2])}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment