From 405abde21264307a18a214fdf7d6969df2c40086 Mon Sep 17 00:00:00 2001 From: hyzboy Date: Fri, 23 May 2025 22:47:11 +0800 Subject: [PATCH] Added pull.bat/pull_all.bat --- CMAssetsManage | 2 +- CMCMakeModule | 2 +- CMCore | 2 +- CMNetwork | 2 +- CMPlatform | 2 +- CMSceneGraph | 2 +- CMUtil | 2 +- Examples | 2 +- pull.bat | 4 ++++ pull_all.bat | 10 ++++++++++ 10 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 pull.bat create mode 100644 pull_all.bat diff --git a/CMAssetsManage b/CMAssetsManage index 0fae462..0244bff 160000 --- a/CMAssetsManage +++ b/CMAssetsManage @@ -1 +1 @@ -Subproject commit 0fae462338cd01c5a26d0a8f0175fe3729a65c94 +Subproject commit 0244bff1b60119806f683b54a137cda2cacc17ac diff --git a/CMCMakeModule b/CMCMakeModule index 737fe5c..d56ae21 160000 --- a/CMCMakeModule +++ b/CMCMakeModule @@ -1 +1 @@ -Subproject commit 737fe5c80d013f807cbb8f4d333d5a59c82571bc +Subproject commit d56ae21e3e86496468ae1fbb77292bef3e285252 diff --git a/CMCore b/CMCore index cf494b4..f1a6f0b 160000 --- a/CMCore +++ b/CMCore @@ -1 +1 @@ -Subproject commit cf494b4f860be8cdb1bf198f036b26db58435bb0 +Subproject commit f1a6f0b90eb7766be90afb7e62ec539dfa30f746 diff --git a/CMNetwork b/CMNetwork index 21e0b58..698b1eb 160000 --- a/CMNetwork +++ b/CMNetwork @@ -1 +1 @@ -Subproject commit 21e0b58b8ead72c8eda22d8cf746902b576e5526 +Subproject commit 698b1ebacc299fb8f34e08d97ba2d1223d846183 diff --git a/CMPlatform b/CMPlatform index 67e8e95..46ae04c 160000 --- a/CMPlatform +++ b/CMPlatform @@ -1 +1 @@ -Subproject commit 67e8e956658cb9abbb94cd01f0a465e8275b44dd +Subproject commit 46ae04cd50d09dfb00d9945c5f43d29a2744bcae diff --git a/CMSceneGraph b/CMSceneGraph index f74d704..76aff5d 160000 --- a/CMSceneGraph +++ b/CMSceneGraph @@ -1 +1 @@ -Subproject commit f74d7045fa0d143b94103e49093fe18a1d5a884c +Subproject commit 76aff5d55628a87baa35498520296d65ab70e995 diff --git a/CMUtil b/CMUtil index 57ff3a7..48383e5 160000 --- a/CMUtil +++ b/CMUtil @@ -1 +1 @@ -Subproject commit 57ff3a70c99265ed7bb97b3b6840709e84bac0c1 +Subproject commit 48383e5f63928bab43320c406219365850507246 diff --git a/Examples b/Examples index 25b5c60..959eadd 160000 --- a/Examples +++ b/Examples @@ -1 +1 @@ -Subproject commit 25b5c60fe53bdba30d39494b840b5e6641535165 +Subproject commit 959eadd68d1365aa0a9ad87cafdeb86d4ffa35ec diff --git a/pull.bat b/pull.bat new file mode 100644 index 0000000..671f5a3 --- /dev/null +++ b/pull.bat @@ -0,0 +1,4 @@ +@echo off +cd %1 +git.exe pull -v --no-rebase -- %2 %3 +cd .. diff --git a/pull_all.bat b/pull_all.bat new file mode 100644 index 0000000..9f45300 --- /dev/null +++ b/pull_all.bat @@ -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%