dotfiles/.local/bin/git-rmgonebranches

7 lines
225 B
Plaintext
Raw Normal View History

#!/bin/sh
# Cleans up remote branches and removes branches where the remote-tracking branches got removed.
git fetch -p &&
for branch in `git branch -vv | grep ": gone]" | cut -d" " -f3`
do git branch -D "$branch"
done