Waterfall/mergeUpstream.sh
2017-01-15 10:05:31 -07:00

16 lines
224 B
Bash
Executable File

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