Created
October 11, 2012 22:08
-
-
Save toland/3875821 to your computer and use it in GitHub Desktop.
Simple shell script to clean up stale feature branches
This file contains hidden or 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/sh | |
# Modified version of script found at | |
# http://devblog.springest.com/a-script-to-remove-old-git-branches | |
# This has to be run from master | |
git checkout master | |
# Update our list of remotes | |
git fetch origin | |
git remote prune origin | |
# Remove local fully merged branches | |
git branch --merged master | grep -v 'master$' | xargs git branch -d | |
# Show remote fully merged branches | |
echo "The following remote branches are fully merged and will be removed:" | |
git branch -r --merged master | grep 'origin\/' | sed 's/ *origin\///' | grep -v 'master$' | |
read -p "Continue (y/n)? " | |
if [ "$REPLY" == "y" ] | |
then | |
# Remove remote fully merged branches | |
git branch -r --merged master | grep 'origin\/' | sed 's/ *origin\///' \ | |
| grep -v 'master$' | xargs -I% git push origin :% | |
echo "Done!" | |
say "Stale feature branches have been deleted" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment