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 - }