diff --git a/fake_home/.zshrc b/fake_home/.zshrc index d3aad88..cf90898 100644 --- a/fake_home/.zshrc +++ b/fake_home/.zshrc @@ -70,9 +70,9 @@ source ~/.zsh_local function pushdot { cd "$DOT_DIR" || return 1 if [ $# -eq 0 ]; then - git commit -a && git push -u origin main & + git commit -a && git push -u origin main else - git commit -a -m "$1" && git push -u origin main | /dev/null & + git commit -a -m "$1" && git push -u origin main fi cd - }