ciclopibot/merge_and_push.sh

8 lines
139 B
Bash

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