Bash scripts helping with updates
This commit is contained in:
8
merge_and_push.sh
Normal file
8
merge_and_push.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Merge develop into master and push both branches; checkout to develop at the end.
|
||||
|
||||
git checkout master;
|
||||
git merge develop;
|
||||
git checkout develop;
|
||||
git push origin master develop;
|
||||
Reference in New Issue
Block a user