Another super useful one is git config --global alias.clean-branches "!git branch | grep -v master | xargs git branch -D"
git config --global alias.clean-branches "!git branch | grep -v master | xargs git branch -D"
I like having it be available as a git alias, it makes the workflow a little nicer, since you'll probably already be doing git things
Another super useful one is
git config --global alias.clean-branches "!git branch | grep -v master | xargs git branch -D"
I like having it be available as a git alias, it makes the workflow a little nicer, since you'll probably already be doing git things