This commit is contained in:
孙小云 2026-01-17 10:59:25 +08:00
parent 37f562dc9c
commit 5db0e8458d
1 changed files with 8 additions and 0 deletions

8
use.md
View File

@ -50,3 +50,11 @@ git submodule update --remote ruoyi-gateway
- 必须执行 `git submodule update` 才会真正拉取子模块的代码
- `--init` 参数会初始化还未初始化的子模块
- `--recursive` 参数会递归更新所有嵌套的子模块
## 在根目录提交各个模块的修改
cd ruoyi-modules/tuoheng-airline && git add . && git commit -m "修改端口" && git push && cd .. && cd ..
cd ruoyi-modules/tuoheng-approval && git add . && git commit -m "修改端口" && git push && cd .. && cd ..
cd ruoyi-modules/tuoheng-device && git add . && git commit -m "修改端口" && git push && cd .. && cd ..
cd ruoyi-modules/tuoheng-fms && git add . && git commit -m "修改端口" && git push && cd .. && cd ..
cd ruoyi-modules/tuoheng-media && git add . && git commit -m "修改端口" && git push && cd .. && cd ..
cd ruoyi-modules/tuoheng-task && git add . && git commit -m "修改端口" && git push && cd .. && cd ..