8 lines
139 B
Bash
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;
|