Skip to content

Instantly share code, notes, and snippets.

@DariuszPorowski
Last active June 18, 2022 00:24
Show Gist options
  • Select an option

  • Save DariuszPorowski/3788530a8f2eeb1a96ba7b37e471d921 to your computer and use it in GitHub Desktop.

Select an option

Save DariuszPorowski/3788530a8f2eeb1a96ba7b37e471d921 to your computer and use it in GitHub Desktop.
Clean up local Git branches that have been deleted on the remote (Bash)
#!/bin/bash
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