Files
EWF/tools/update_git_working_copy.bat
2011-10-31 02:43:44 -07:00

11 lines
281 B
Batchfile

cd %~dp0..
echo Pull changes from origin master
call git pull origin master
echo Update all submodule recursively
call git submodule update --init --recursive
echo Checkout master branch for each submodule recursively
call git submodule foreach --recursive git checkout master