Queer European MD passionate about IT
Ver código fonte

Script to merge and push to gogs and github

Davte 5 anos atrás
pai
commit
951d7d6faa
1 arquivos alterados com 7 adições e 0 exclusões
  1. 7 0
      merge_and_push.sh

+ 7 - 0
merge_and_push.sh

@@ -0,0 +1,7 @@
+#!/bin/bash
+
+git checkout master;
+git merge develop;
+git checkout develop;
+git push origin master develop;
+git push github master develop;