12 lines
122 B
Bash
12 lines
122 B
Bash
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
git checkout ardour
|
||
|
git pull --rebase
|
||
|
|
||
|
|
||
|
git checkout master
|
||
|
git pull --rebase
|
||
|
git merge ardour
|
||
|
git push
|