7 lines
99 B
Bash
Executable file
7 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
|
|
git checkout master
|
|
git merge --no-ff next
|
|
git checkout next
|
|
git rebase master
|
|
git push
|