From 6eb6696e9536f7f86511d4e3f2851cf03f575d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Mon, 4 Sep 2017 15:56:59 +0100 Subject: [PATCH] Add vacuum-hard (#130) --- .zprofile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.zprofile b/.zprofile index 81c8bd17..778f5a0e 100644 --- a/.zprofile +++ b/.zprofile @@ -36,7 +36,10 @@ 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 } + +vacuum-repo-hard() { + git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -D +}