From 4e19c6879b563a2c74f5568d947719e6ba9b2b85 Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Mon, 12 Oct 2020 12:19:03 +0200 Subject: [PATCH] aggiunta altri branch --- gitSpread.bat | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gitSpread.bat b/gitSpread.bat index 927bc3ad..87cf9d8c 100644 --- a/gitSpread.bat +++ b/gitSpread.bat @@ -9,18 +9,24 @@ ECHO off set baseBranch=%1 set pushRemote=%2 +git push . %baseBranch%:beta git push . %baseBranch%:develop +git push . %baseBranch%:ES3 git push . %baseBranch%:Giancarlo git push . %baseBranch%:master +git push . %baseBranch%:MongoDb git push . %baseBranch%:SDK git push . %baseBranch%:stable REM Faccio push remoto condizionale if %pushRemote% GTR 0 ( git push gitlab.steamware %baseBranch%:%baseBranch% ) +if %pushRemote% GTR 2 ( git push gitlab.steamware %baseBranch%:beta ) if %pushRemote% GTR 1 ( git push gitlab.steamware %baseBranch%:develop ) +if %pushRemote% GTR 2 ( git push gitlab.steamware %baseBranch%:ES3 ) if %pushRemote% GTR 2 ( git push gitlab.steamware %baseBranch%:Giancarlo ) if %pushRemote% GTR 1 ( git push gitlab.steamware %baseBranch%:master ) +if %pushRemote% GTR 2 ( git push gitlab.steamware %baseBranch%:MongoDb ) if %pushRemote% GTR 1 ( git push gitlab.steamware %baseBranch%:SDK ) if %pushRemote% GTR 2 ( git push gitlab.steamware %baseBranch%:stable )