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