-
-
Save rcorreia/3725491 to your computer and use it in GitHub Desktop.
Delete all merged branches
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
#!/bin/bash | |
# Deletes all branches already merged with master | |
git checkout master | |
git pull | |
for BRANCH in `git branch`; do | |
git branch -d ${BRANCH} | |
done | |
# BUG: `git branch` is also returning on top-level files | |
# not too big a problem since "git branch -d" ignores them | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment