From 47cdcd6734669948bff09502b6e7ad153aa8f7fe Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 12 May 2019 10:46:59 +0100 Subject: [PATCH] Don't GC when doing git cleanup --- files/zshrc/applications.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/files/zshrc/applications.sh b/files/zshrc/applications.sh index 7f73830..3c47820 100644 --- a/files/zshrc/applications.sh +++ b/files/zshrc/applications.sh @@ -17,7 +17,6 @@ git-cleanup() { command git branch --merged | grep -v '*' | xargs -n 1 git branch -D command git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D command git remote prune origin - command git gc --aggressive command git checkout - }