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