Waterfall/mergeUpstream.sh

16 lines
224 B
Bash
Raw Normal View History

2017-01-15 18:05:31 +01:00
PS1="$"
basedir=`pwd`
function update {
cd "$basedir/$1"
git fetch && git reset --hard origin/master
cd "$basedir/$1/.."
git add $1
}
update Waterfall
# Update submodules
git submodule update --recursive