Script to merge and push to gogs and github

This commit is contained in:
Davte 2019-07-18 20:31:44 +02:00
parent 26896f1c49
commit 951d7d6faa

7
merge_and_push.sh Normal file
View File

@ -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;