Procházet zdrojové kódy

202511211232

develop
Thibaud před 1 měsícem
rodič
revize
bf218c2f8e
4 změnil soubory, kde provedl 7 přidání a 5 odebrání
  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 Zobrazit soubor

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

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

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

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

Načítá se…
Zrušit
Uložit