Skip to content

Instantly share code, notes, and snippets.

@olets
Forked from robmiller/git-cleanup-repo
Last active May 2, 2018 19:58
Show Gist options
  • Save olets/ddda0095235ce45ddfcccca6d235c4a4 to your computer and use it in GitHub Desktop.
Save olets/ddda0095235ce45ddfcccca6d235c4a4 to your computer and use it in GitHub Desktop.
A script for cleaning up #git repositories; it deletes branches that are fully merged into `origin/master`, prunes obsolete remote tracking branches, and as an added bonus will replicate these changes on the remote.
#!/bin/bash
# git-cleanup-repo
#
# Author: Rob Miller <rob@bigfish.co.uk>
# Adapted from the original by Yorick Sijsling
git checkout master &> /dev/null
# Make sure we're working with the most up-to-date version of master.
git fetch
# Prune obsolete remote tracking branches. These are branches that we
# once tracked, but have since been deleted on the remote.
git remote prune origin
# List all the branches that have been merged fully into master, and
# then delete them. We use the remote master here, just in case our
# local master is out of date.
git branch --merged origin/master | grep -v 'master$' | xargs git branch -d
# Now the same, but including remote branches.
MERGED_ON_REMOTE=`git branch -r --merged origin/master | sed 's/ *origin\///' | grep -v 'master$'`
if [ "$MERGED_ON_REMOTE" ]; then
echo "The following remote branches are fully merged and will be removed:"
echo $MERGED_ON_REMOTE | xargs -n 1
read -p "Continue (y/N)? "
if [ "$REPLY" == "y" ]; then
git branch -r --merged origin/master | sed 's/ *origin\///' \
| grep -v 'master$' | xargs -I% git push origin :% 2>&1 \
| grep --colour=never 'deleted'
echo "Done!"
fi
fi
@olets
Copy link
Author

olets commented Oct 16, 2017

modifications from Rob Miller's original:

  • prints the remote branches one-per-line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment