Add vacuum-repo function (#123)

This commit is contained in:
Cyryl Płotnicki 2017-07-30 16:52:58 +02:00 committed by GitHub
parent 6867c78e7e
commit 8fdf4a7bc6

View file

@ -80,3 +80,7 @@ export PATH="$HOME/.cargo/bin:$PATH"
# other common env vars
source ~/.setenv
# aliases
vacuum-repo() {
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
}