Add vacuum-repo function (#123)
This commit is contained in:
parent
6867c78e7e
commit
8fdf4a7bc6
1 changed files with 4 additions and 0 deletions
|
@ -80,3 +80,7 @@ export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
# other common env vars
|
# other common env vars
|
||||||
source ~/.setenv
|
source ~/.setenv
|
||||||
|
|
||||||
|
# aliases
|
||||||
|
vacuum-repo() {
|
||||||
|
git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue