créer VERSION.txt et CHANGES.txt à la racine du projet
This commit is contained in:
parent
9d8a74791e
commit
47b6e5b359
10
prel
10
prel
|
@ -278,6 +278,7 @@ if [ "$action" == checkout ]; then
|
||||||
git_ensure_cleancheckout
|
git_ensure_cleancheckout
|
||||||
is_any_branch "$release" master release || die "$release: ce n'est pas une branche de release"
|
is_any_branch "$release" master release || die "$release: ce n'est pas une branche de release"
|
||||||
r=0
|
r=0
|
||||||
|
newbranch=
|
||||||
if git_have_branch "$release"; then
|
if git_have_branch "$release"; then
|
||||||
git checkout "$release"; r=$?
|
git checkout "$release"; r=$?
|
||||||
elif git_have_rbranch "$release"; then
|
elif git_have_rbranch "$release"; then
|
||||||
|
@ -288,6 +289,7 @@ Vous allez créer la nouvelle branche de release ${COULEUR_VERTE}$release${COULE
|
||||||
à partir de la branche source ${COULEUR_BLEUE}$source${COULEUR_NORMALE}"
|
à partir de la branche source ${COULEUR_BLEUE}$source${COULEUR_NORMALE}"
|
||||||
ask_yesno "Voulez-vous continuer?" O || die
|
ask_yesno "Voulez-vous continuer?" O || die
|
||||||
|
|
||||||
|
newbranch=1
|
||||||
git_ensure_branch "$release" "$source" "$origin"
|
git_ensure_branch "$release" "$source" "$origin"
|
||||||
[ $? -eq 2 ] && die "Impossible de créer la branche $release. Veuillez vérifier que la branche $source existe"
|
[ $? -eq 2 ] && die "Impossible de créer la branche $release. Veuillez vérifier que la branche $source existe"
|
||||||
git checkout "$release"; r=$?
|
git checkout "$release"; r=$?
|
||||||
|
@ -298,6 +300,10 @@ Vous allez créer la nouvelle branche de release ${COULEUR_VERTE}$release${COULE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$r" -eq 0 -a -n "$write" ]; then
|
if [ "$r" -eq 0 -a -n "$write" ]; then
|
||||||
|
set cwd=pwd
|
||||||
|
setx workdir=git rev-parse --show-toplevel
|
||||||
|
[ -d "$workdir" ] && cd "$workdir"
|
||||||
|
|
||||||
commitmsg="Init changelog"
|
commitmsg="Init changelog"
|
||||||
if [ -n "$newver" ]; then
|
if [ -n "$newver" ]; then
|
||||||
pver -uv "$newver" && commitmsg="Init changelog & version $newver"
|
pver -uv "$newver" && commitmsg="Init changelog & version $newver"
|
||||||
|
@ -330,6 +336,8 @@ $modifs"
|
||||||
|
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "$commitmsg"
|
git commit -m "$commitmsg"
|
||||||
|
|
||||||
|
cd "$cwd"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ "$r" -eq 0 ]; then
|
if [ "$r" -eq 0 ]; then
|
||||||
|
@ -342,7 +350,7 @@ $modifs"
|
||||||
# mettre à jour la branche sur laquelle on se trouve
|
# mettre à jour la branche sur laquelle on se trouve
|
||||||
setx branch=git_get_branch
|
setx branch=git_get_branch
|
||||||
action=merge
|
action=merge
|
||||||
elif [ "$r" -eq 0 ]; then
|
elif [ "$r" -eq 0 -a -n "$newbranch" ]; then
|
||||||
action=push
|
action=push
|
||||||
array_addu push_branches "$release"
|
array_addu push_branches "$release"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue