electrodynamics/bin/GitSync.bat
DarkGuardsman 3fd7b8e229 Starting to separate core from content
At some point in the near future the core will need to act as a library
more than a mod. Though it will still need to have its common items, and
blocks. Such as parts, and ores. Machines like the battery box, wire,
and generator will be moved to another mod.
2013-12-04 11:40:26 -05:00

30 lines
No EOL
585 B
Batchfile

rem set defaults:
set "com=Auto-Sync"
rem set parameters:
IF NOT "a%1"=="a" (set "com=%1")
cd ..\
git commit -am "%com%"
git submodule foreach git pull origin master
git push origin master
cd ..\
cd Assembly-Line
git commit -am "%com%"
git push origin master
cd ..\
cd FarmTech
git commit -am "%com%"
git push origin master
cd ..\
cd Fluid-Mechanics
git commit -am "%com%"
git push origin master
cd ..\
cd GreaterProtection
git commit -am "%com%"
git push origin master
cd ..\
cd Empire-Engine
git submodule foreach git pull origin master
git commit -am "%com%"
git push origin master