13 lines
251 B
Bash
Executable file
13 lines
251 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e # bail on errors
|
|
|
|
REMOTE="${1:-origin}"
|
|
BRANCH="${2:-$(git rev-parse --abbrev-ref HEAD)}"
|
|
|
|
git update "$REMOTE" develop
|
|
git checkout develop
|
|
git merge --no-ff "$BRANCH"
|
|
git push
|
|
git checkout "$BRANCH"
|
|
git push -u "$REMOTE" "$BRANCH"
|