Sfoglia il codice sorgente

202511211232

develop
Thibaud 1 mese fa
parent
commit
bf218c2f8e
4 ha cambiato i file con 7 aggiunte e 5 eliminazioni
  1. +1
    -1
      git_01_quick_commit.sh
  2. +1
    -1
      git_02_add_branch.sh
  3. +3
    -2
      git_03_push_branch.sh
  4. +2
    -1
      git_05_delete_feature_branch.sh

+ 1
- 1
git_01_quick_commit.sh Vedi File

@ -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 ]

+ 1
- 1
git_02_add_branch.sh Vedi File

@ -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

+ 3
- 2
git_03_push_branch.sh Vedi File

@ -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

+ 2
- 1
git_05_delete_feature_branch.sh Vedi File

@ -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

Caricamento…
Annulla
Salva