From 182b3b7a8d04a2cdc7cf7f15ae00ada24c202f5d Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 6 Oct 2021 13:51:40 -0400 Subject: [PATCH] Run pushdot in background. --- .zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.zshrc b/.zshrc index 901c033..00fb59e 100644 --- a/.zshrc +++ b/.zshrc @@ -67,9 +67,9 @@ fi function pushdot { cd ~/.dotfiles && if [ $# -eq 0 ]; then - git commit -a && git push -u origin master + 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 & fi cd - }