From e6a24f177ca543820d40ddb63a10d7cba95e4676 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Wed, 13 Dec 2023 15:01:00 -0500 Subject: [PATCH] Use main as branch name --- fake_home/.zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 - }