From 28dc8cdb997d503f43d8fa0a3c406e01aba9907d Mon Sep 17 00:00:00 2001 From: Vitaly Rtishchev Date: Thu, 28 Apr 2022 11:53:00 +0300 Subject: [PATCH] [core] Update branches syncing script to include v5 branch --- scripts/sync-branches.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/sync-branches.sh b/scripts/sync-branches.sh index 5d2fc6a5d7d..c7a1a540295 100644 --- a/scripts/sync-branches.sh +++ b/scripts/sync-branches.sh @@ -1,5 +1,12 @@ git checkout master git pull + git checkout dev +git pull git merge master git push + +git checkout v5 +git pull +git merge dev +git push