Intégration de la branche ptools

This commit is contained in:
Jephté Clain 2015-04-16 10:56:36 +04:00
commit dbd9605323
1 changed files with 11 additions and 0 deletions

11
prel
View File

@ -387,6 +387,17 @@ if [ "$action" == merge ]; then
if [ -n "$newver" ]; then if [ -n "$newver" ]; then
estepn "Création du tag $newver" estepn "Création du tag $newver"
git tag --force "$newver" || die git tag --force "$newver" || die
if git_have_remote "$origin"; then
if [ -z "$UTOOLS_VCS_OFFLINE" ]; then
git push "$origin" tag "$newver"
else
eimportant "Le tag $newver n'a pas été poussé vers l'origine.
Il faudra le faire manuellement avec la commande suivante:
$(qvals git push "$origin" tag "$newver")
ou celle-ci pour pour pousser TOUS les tags:
$(qvals git push "$origin" --tags)"
fi
fi
fi fi
if [ "$release" != develop ]; then if [ "$release" != develop ]; then