diff --git a/fake_home/.zshrc b/fake_home/.zshrc index 990b271..30167ee 100644 --- a/fake_home/.zshrc +++ b/fake_home/.zshrc @@ -69,9 +69,9 @@ fi function pushdot { cd "$SCRIPT_DIR" || return 1 if [ $# -eq 0 ]; then - git commit -a && git push -u origin master & + git commit -a && git push -u origin main & else - git commit -a -m "$1" && git push -u origin master | /dev/null & + git commit -a -m "$1" && git push -u origin main | /dev/null & fi cd - }