增加批量从hyzgame远端拉取源代码的.bat

This commit is contained in:
hyzboy 2025-04-23 00:38:57 +08:00
parent aed57437f9
commit a858fcab99
5 changed files with 17 additions and 3 deletions

2
CMCore

@ -1 +1 @@
Subproject commit a7b0cb6112c1dfad65523e619d88917398ca7c9a Subproject commit 33f0ed3258ac95eae058966a2bd6b1bf05458c69

@ -1 +1 @@
Subproject commit e3680c477d25d2b4d93ff4da2d84725524f047b2 Subproject commit 2d9dae646081e79f4a822bf79fd9c552617a764f

2
CMUtil

@ -1 +1 @@
Subproject commit 57ff3a70c99265ed7bb97b3b6840709e84bac0c1 Subproject commit 6173c16bf1744eb15472aa198d3a2a5c4513e78e

4
pull.bat Normal file
View File

@ -0,0 +1,4 @@
@echo off
cd %1
git.exe pull -v --no-rebase -- %2 %3
cd ..

10
pull_all.bat Normal file
View File

@ -0,0 +1,10 @@
@echo off
SET REPO="hyzgame"
SET BRANCH=master
call pull.bat CMAssetsManage %REPO% %BRANCH%
call pull.bat CMCMakeModule %REPO% %BRANCH%
call pull.bat CMCore %REPO% %BRANCH%
call pull.bat CMPlatform %REPO% %BRANCH%
call pull.bat CMSceneGraph %REPO% %BRANCH%
call pull.bat CMUtil %REPO% %BRANCH%