Skip to content

Instantly share code, notes, and snippets.

@antoinekociuba
Last active May 14, 2024 05:38
Delete all merged branches from the remote Git repository (assuming master is the main branch)
# Sources: https://community.atlassian.com/t5/Bitbucket-questions/Is-there-a-way-to-delete-branches-in-bulk/qaq-p/547331
# Make sure remotes are up to date (with stale remotes purged):
git fetch -p
# Initial no-op run --- do the branches to delete look correct?
# Be careful to omit 'master' from the output.
git branch --remote --merged origin/master | grep -v 'master' | cut -b 10- | xargs
# Do the bulk delete!!! (can take a long time...)
git branch --remote --merged origin/master | grep -v 'master' | cut -b 10- | xargs git push --delete origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment