cola/merge_and_push.sh
2019-03-11 18:00:59 +01:00

7 lines
107 B
Bash

#!/bin/bash
git checkout master;
git merge develop;
git checkout develop;
git push origin master develop;