From 62e1e0435bfae20ab839af890dc0cfc48a06dd76 Mon Sep 17 00:00:00 2001 From: Guillaume Emorine Date: Fri, 11 Oct 2024 11:53:08 +0200 Subject: [PATCH] Modification du script en vue de la suppression de la seconde branche. --- automate.sh | 67 ++++++++++++++--------------------------------------- 1 file changed, 18 insertions(+), 49 deletions(-) diff --git a/automate.sh b/automate.sh index b469706..3e3120b 100644 --- a/automate.sh +++ b/automate.sh @@ -11,54 +11,23 @@ export https_proxy="http://10.121.38.1:8080/" echo "Voulez-vous récupérer les fichiers du dépôt ou effectuer un push sur le dépôt ? [1 = Pull, 2 = Push]" read answer -echo "Quelle branche est concernée ? [1 = main, 2 = test]" -read branch - -if [ $branch == 1 ] ; then - if [ $answer == 1 ] ; then - git checkout main - echo "Récupération des fichiers à jour, branche main..." - git pull -q origin main - echo "Fichiers à jour récupérés." - else - git checkout main - echo "Ajout des fichiers au Gitea..." - sleep 1 - git add . - echo "Commit en cours..." - sleep 1 - git commit - echo "Entrez la version du tag:" - read tag - git tag $tag - echo "Push des fichiers au Gitea, branche main..." - sleep 1 - git push -q origin main --tag - fi - -elif [ $branch == 2 ] ; then - if [ $answer == 1 ] ; then - git checkout test - echo "Récupération des fichiers à jour dans la branche test..." - git pull -q origin test - echo "Fichiers à jour récupérés." - else - git checkout test - echo "Ajout des fichiers au Gitea, branche test..." - sleep 1 - git add . - echo "Commit en cours..." - sleep 1 - git commit - echo "Entrez la version du tag:" - read tag - git tag $tag - echo "Push des fichiers au Gitea, branche test..." - sleep 1 - git push -q origin test --tag - fi - +if [ $answer == 1 ] ; then + git checkout main + echo "Récupération des fichiers à jour, branche main..." + git pull -q origin main + echo "Fichiers à jour récupérés." else - echo "Choisissez une branche et une option valide. Veuillez relancer le script" - + git checkout main + echo "Ajout des fichiers au Gitea..." + sleep 1 + git add . + echo "Commit en cours..." + sleep 1 + git commit + echo "Entrez la version du tag:" + read tag + git tag $tag + echo "Push des fichiers au Gitea, branche main..." + sleep 1 + git push -q origin main --tag fi