Skip to content

Instantly share code, notes, and snippets.

@warmwaffles
Last active August 29, 2015 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warmwaffles/10989403 to your computer and use it in GitHub Desktop.
Save warmwaffles/10989403 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "REMOVING MERGED BRANCHES..."
git branch --merged | grep -v "\*" | grep -v "master" | xargs -n 1 git branch -d
echo "PRUNING REMOTE BRANCHES..."
git remote | xargs -n 1 git remote prune
echo "CLEANING...AGGRESSIVE LIKE..."
git gc --aggressive
echo "DONE"
@warmwaffles
Copy link
Author

git config --global alias.cleanup '!sh git-cleanup.sh'

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