dotfiles/bin/git-purge
2020-06-16 02:56:05 +02:00

10 lines
178 B
Bash
Executable File

#!/usr/bin/env sh
BRANCHES=$(git branch --merged|egrep -v "(^\*|master|dev)")
if [ -z "${BRANCHES}" ] ; then
echo "Nothing to delete"
else
git branch -d ${BRANCHES}
fi