From bf76a9fa35c4a3359b0c163b4614a9f0292426b3 Mon Sep 17 00:00:00 2001 From: Aleksandar Toplek Date: Thu, 5 Feb 2015 17:48:35 +0100 Subject: [PATCH] Before merge commit --- mergeAll.ps1 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 mergeAll.ps1 diff --git a/mergeAll.ps1 b/mergeAll.ps1 new file mode 100644 index 0000000..83cb085 --- /dev/null +++ b/mergeAll.ps1 @@ -0,0 +1,30 @@ +git add -A +git commit -m "Before merge commit" +git push + +git checkout development +git pull +git merge edge +git push + +git checkout beta +git pull +git merge development +git push + +git checkout master +git pull +git merge beta +git push + +git checkout beta +git merge master +git push + +git checkout development +git merge beta +git push + +git checkout edge +git merge development +git push \ No newline at end of file