-
-
Save mkoryak/d9cac735b0463e4611bc5fdacd88459f to your computer and use it in GitHub Desktop.
Git Delete 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 | |
MAIN=${1:-develop} | |
BRANCHES=$(git branch --merged $MAIN | grep -v -e 'master\|staging\|develop\|\*') | |
echo Branches merged into $MAIN: | |
echo $BRANCHES | |
read -p "Delete these branches (y/n)? " answer | |
if [ "$answer" = "n" ]; then echo aborting && exit; fi | |
echo $BRANCHES | xargs -n 1 git branch -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use something similar: