git submodule即git子模块,将一个git仓库作为另一个git仓库的子目录
添加一个子模块
|
|
会增加:
.gitmodules
文件,记录每个子模块的引用信息- 相应的子模块
克隆一个带有submodules的仓库
|
|
修改submodule (在引用项目中修改)
- 在这个lib中修改并提交
- 在引用这个module的项目中提交
- 在主项目中
git pull
更新公共类库
|
|
Hellooooooo! 前端
git submodule即git子模块,将一个git仓库作为另一个git仓库的子目录
|
|
会增加:
.gitmodules
文件,记录每个子模块的引用信息
|
|
git pull
|
|