From bf218c2f8e242d47dfca9cb73d99e048bd932ad4 Mon Sep 17 00:00:00 2001 From: Thibaud Date: Fri, 21 Nov 2025 12:32:37 +0100 Subject: [PATCH] 202511211232 --- git_01_quick_commit.sh | 2 +- git_02_add_branch.sh | 2 +- git_03_push_branch.sh | 5 +++-- git_05_delete_feature_branch.sh | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/git_01_quick_commit.sh b/git_01_quick_commit.sh index 0cdd53e..22bfab1 100755 --- a/git_01_quick_commit.sh +++ b/git_01_quick_commit.sh @@ -2,7 +2,7 @@ TIMESTAMP=`date "+%Y%m%d%H%M"` -git_00_status.sh +git_99_status.sh TEST=`git status | grep propre | wc -l` if [ $TEST -eq 0 ] diff --git a/git_02_add_branch.sh b/git_02_add_branch.sh index a947d23..e5bad92 100755 --- a/git_02_add_branch.sh +++ b/git_02_add_branch.sh @@ -16,7 +16,7 @@ then echo # (optional) move to a new line if [[ $REPLY =~ ^[YyOo]$ ]] then - git_00_checkout_branch.sh develop + git_98_checkout_branch.sh develop fi fi diff --git a/git_03_push_branch.sh b/git_03_push_branch.sh index 2eeb3f8..999539f 100755 --- a/git_03_push_branch.sh +++ b/git_03_push_branch.sh @@ -3,6 +3,7 @@ CIBLE=$1 if [ "$CIBLE" == "" ] then + Using $GIT_CURRENT_BRANCH as cible CIBLE=$GIT_CURRENT_BRANCH fi @@ -10,12 +11,12 @@ git_01_quick_commit.sh if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ]; then - git_00_checkout_branch.sh $CIBLE + git_98_checkout_branch.sh $CIBLE fi git push all if [ ! "$CIBLE" = "$GIT_CURRENT_BRANCH" ]; then - git_00_checkout_branch.sh $GIT_CURRENT_BRANCH + git_98_checkout_branch.sh $GIT_CURRENT_BRANCH fi diff --git a/git_05_delete_feature_branch.sh b/git_05_delete_feature_branch.sh index 1c136cf..26432d5 100755 --- a/git_05_delete_feature_branch.sh +++ b/git_05_delete_feature_branch.sh @@ -3,6 +3,7 @@ CIBLE=$1 if [ "$CIBLE" == "" ] then + Using $GIT_CURRENT_BRANCH as cible CIBLE=$GIT_CURRENT_BRANCH fi @@ -29,7 +30,7 @@ then echo # (optional) move to a new line if [[ $REPLY =~ ^[YyOo]$ ]] then - git_00_checkout_branch.sh develop + git_98_checkout_branch.sh develop fi fi