hotfix #2

Merged
tibo merged 18 commits from hotfix into production 2025-12-18 07:55:16 +00:00
Showing only changes of commit 4c3cf65a0d - Show all commits
+2 -2
View File
@@ -15,7 +15,7 @@ usage(){
echo ---- push pour git_03_push_branch.sh
echo ---- merge pour git_04_merge_branch.sh
echo ---- delete pour git_05_delete_feature_branch.sh
echo ---- delete_all pour git_06_delete_all_feature_branch.sh
echo ---- delete_all pour git_06_delete_all_features_branch.sh
}
GITCMD=$1
@@ -29,6 +29,6 @@ case $GITCMD in
("push") git_03_push_branch.sh $@;;
("merge") git_04_merge_branch.sh $@;;
("delete") git_05_delete_feature_branch.sh $@;;
("delete_all") git_06_delete_all_feature_branch.sh $@;;
("delete_all") git_06_delete_all_features_branch.sh $@;;
(*) echo && echo "$GITCMD is not a GITCMD !" && usage;;
esac