This commit is contained in:
Jephté Clain 2015-03-23 13:51:06 +04:00
parent f8c4a54e18
commit 8deda74956
2 changed files with 3 additions and 9 deletions

4
pdev
View File

@ -169,9 +169,7 @@ if [ "$action" == merge ]; then
fi
fi
estepn "\
Intégration de la feature branch ${COULEUR_VERTE}$feature${COULEUR_NORMALE}
dans la branche de destination ${COULEUR_BLEUE}develop${COULEUR_NORMALE}"
estepn "Intégration ${COULEUR_VERTE}$feature${COULEUR_NORMALE} --> ${COULEUR_BLEUE}develop${COULEUR_NORMALE}"
ask_yesno "Voulez-vous continuer?" O || die
git checkout develop

8
prel
View File

@ -315,18 +315,14 @@ if [ "$action" == merge ]; then
fi
fi
estepn "\
Intégration de la branche ${COULEUR_VERTE}$release${COULEUR_NORMALE}
dans la branche de destination ${COULEUR_BLEUE}master${COULEUR_NORMALE}"
estepn "Intégration ${COULEUR_VERTE}$release${COULEUR_NORMALE} --> ${COULEUR_BLEUE}master${COULEUR_NORMALE}"
ask_yesno $confirm "Voulez-vous continuer?" O || die
git checkout master
git merge "$release" -m "Intégration de la branche $release" --no-ff || die
if [ "$release" != develop ]; then
estepn "\
Intégration de la branche ${COULEUR_VERTE}$release${COULEUR_NORMALE}
dans la branche de destination ${COULEUR_BLEUE}develop${COULEUR_NORMALE}"
estepn "Intégration ${COULEUR_VERTE}$release${COULEUR_NORMALE} --> ${COULEUR_BLEUE}develop${COULEUR_NORMALE}"
git checkout develop
git merge "$release" -m "Intégration de la branche $release" --no-ff || die