Git submodule 子模块的管理和使用

场景

当前git项目依赖另一个git项目。
你想将两个项目单独处理但是又需要在其中一个中使用另外一个。

子模块变更

在子模块中的git操作就和独立的git项目操作一样。
进入到子模块目录,提交变更。

$ git add .
$ git commit -m "commit"
$ git push origin HEAD:master

提交完子模块的变更,还要回到父模块的目录,提交下子模块的变动。

cd ..
git status
git commit -m 'update submodule'
git push origin

子模块更新

在父模块的目录下

git submodule foreach git pull

在子模块的目录下,就是正常git操作

git pull

clone包含子模块的父模块仓库

方法1,直接递归clone

git clone [email protected]:jjz/pod-project.git --recursive

方法2,只clone了父模块,要追加clone子模块

git clone [email protected]:jjz/pod-project.git
cd pod-project
git submodule init
git submodule update

添加子模块

已有的项目中添加子模块步骤

git submodule add [email protected]:xxx/xxx-library.git xxx-library
git add .gitmodules xxx-ibrary
git commit -m "xxx-library submodule"
git submodule init
git submoudle update

删除子模块

cd pod-project
git rm --cached pod-library
rm -rf pod-library
rm .gitmodules
vim .git/config
# 删除submodule相关的内容
# 比如
# [submodule "*"]
# url = [email protected]:jjz/**.git
git commit -a -m 'remove submodule'

参考

https://git-scm.com/book/zh/v1/Git-%E5%B7%A5%E5%85%B7-%E5%AD%90%E6%A8%A1%E5%9D%97
https://www.jianshu.com/p/9000cd49822c
https://www.jianshu.com/p/b49741cb1347

你可能感兴趣的:(Git submodule 子模块的管理和使用)