## 克隆并下载所有子模块 ```bash git clone --recurse-submodules ``` ## 克隆主仓库后继续下载子模块 ```bash git submodule init git submodule update ``` 或者直接合为一步 ```bash git submodule update --init ```