This commit is contained in:
parent
37f562dc9c
commit
5db0e8458d
8
use.md
8
use.md
|
|
@ -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 ..
|
||||
Loading…
Reference in New Issue