From 00f1f9a17de660cf3a4f7567cba32256f13ad2cf Mon Sep 17 00:00:00 2001 From: pfych Date: Tue, 15 Jul 2025 14:09:09 +1000 Subject: [PATCH] Adjust commit scripts --- .config/scripts/tool/git.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.config/scripts/tool/git.sh b/.config/scripts/tool/git.sh index fdc9860..711a5ba 100644 --- a/.config/scripts/tool/git.sh +++ b/.config/scripts/tool/git.sh @@ -30,7 +30,9 @@ function commit() { fi if test "$BRANCH_NAME" != 'master' -a "$BRANCH_NAME" != 'main' -a "$BRANCH_NAME" != 'rnd'; then - git commit -m "[$BRANCH_NAME] $*" + # Disabling due to practice changes at new job + # git commit -m "[$BRANCH_NAME] $*" + git commit -m "$*" else echo "$RED_TEXT\nAre you sure you want to commit directly to $BRANCH_NAME?$DEFAULT_TEXT" select answer in "Yes" "No"; do