Add a script to merge the maintenance branch to master.
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e -u -o pipefail
|
||||
|
||||
branch=$(git branch --show-current)
|
||||
git checkout master
|
||||
git pull --rebase
|
||||
git merge $branch -m "Merge branch '$branch'"
|
||||
git push
|
||||
git checkout $branch
|
||||
Reference in New Issue
Block a user