常用git命令

git子模块

仓库一起拉取:

git clone --recurse-submodules 父仓库地址

分开拉取:

git clone 父仓库地址
//进入仓库目录,然后执行下面语句
git submodule init // 初始化子模块
git submodule update // 更新子模块与主仓库中的子模块代码同步
// or
git submodule update --init
// or 嵌套的(子仓库中包含子仓库)
git submodule update --init --recursive

更多参考:git子模块

你可能感兴趣的:(Ubuntu,git)