.gitmodules :记录子模块信息
在父项目新建submodule
添加:git submodule add 子模块仓库地址 子模块在父模块目录下的存储路径。注意:路径不能以 / 结尾(会造成修改不生效)、不能是现有工程已有的目录(不能順利 Clone)
删除:首先删除 .gitmodules 文件下的对应子模块信息,然后 git rm –cached
克隆下来的项目有submodule
拉取submodule: git submodule update --init --recursive
更新submodule
git submodule update --remote
或者在 submodule 打开 git bash,然后用 git pull 拉取项目
——————————————————华丽丽的分割线——————————————————
git submodule update --init --recursive 失败:
- 卡死没有动静——用原生的 git bash 试试,vscode 的 bash 偶尔是会出现卡死状况
版权归原作者 fina_ 所有, 如有侵权,请联系我们删除。