10 lines
261 B
Markdown
10 lines
261 B
Markdown
|
|
git clone --recurse-submodules http://th.local.t-aaron.com:13000/THENG/a-cloud-all.git
|
||
|
|
cd a-cloud-all
|
||
|
|
|
||
|
|
日常更新代码:
|
||
|
|
# 更新主仓库和所有子模块
|
||
|
|
git pull --recurse-submodules
|
||
|
|
|
||
|
|
# 或者分步执行
|
||
|
|
git pull
|
||
|
|
git submodule update --init --recursive
|