From bf441aba5ff53607b31396fc1125ac921b769841 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 6 Oct 2021 13:52:23 -0400 Subject: [PATCH] Try bg'ing into /dev/null --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index 00fb59e..193407e 100644 --- a/.zshrc +++ b/.zshrc @@ -69,7 +69,7 @@ function pushdot { if [ $# -eq 0 ]; then git commit -a && git push -u origin master & else - git commit -a -m "$1" && git push -u origin master & + git commit -a -m "$1" && git push -u origin master | /dev/null & fi cd - }