Last active
May 14, 2024 05:38
Delete all merged branches from the remote Git repository (assuming master is the main branch)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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