Skip to content

Instantly share code, notes, and snippets.

@anwinged
Created December 3, 2019 08:51
Show Gist options
  • Save anwinged/41d7459cff174465660722d522019a80 to your computer and use it in GitHub Desktop.
Save anwinged/41d7459cff174465660722d522019a80 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
set -eu
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