标签:each git pull xxx push mod foreach sum 内容 ref
在本地仓库中,添加远程仓库作为子仓库.
git submodule add XXX.git
在本地仓库中,添加一个空仓库作为子仓库
git add .gitmodules (sumodule-name)
git commit
git submodule init
git status
git add .
git commit
git push
然后在主仓库中
git status
git add .
git commit
git push
如果别人需要从远程仓库中clone这个仓库下来,会发现自仓库那部分是空的。
在主仓库下运行
git submodule foreach git pull
在子仓库下更新
git pull
标签:each git pull xxx push mod foreach sum 内容 ref
原文地址:https://www.cnblogs.com/ChrisCoder/p/9917824.html