game_sync/update_public.bat

10 lines
203 B
Batchfile

@echo off
xcopy .\data .\public\data /s /e /y
xcopy .\protocol .\public\protocol /s /e /y
xcopy .\xlsx .\public\xlsx /s /e /y
cd .\public
git add .
git commit -m "update"
git push origin HEAD:main
pause