Skip to content

Instantly share code, notes, and snippets.

@rcorreia
Forked from pierrel/dbranch.sh
Created September 14, 2012 22:57
Show Gist options
  • Save rcorreia/3725491 to your computer and use it in GitHub Desktop.
Save rcorreia/3725491 to your computer and use it in GitHub Desktop.
Delete all merged branches
#!/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