git拉取子模块的方法
如果首次克隆仓库及其模块,使用:
git clone --recursive 仓库地址
对于仓库首次拉取模块,可以使用:
git submodule update --init --recursive
# 更新单个子模块xxx
git submodule update --init xxx
更新子模块:
# 适用于git 1.8.2及以上版本
git submodule update --recursive --remote
# 适用于git 1.7.3及以上版本
git submodule update --recursive
#或者
git pull --recurse-submodules
上一篇:Git 工具 - 子模块(submodule):一个仓库包含另一个仓库
下一篇:libunwind:记录程序崩溃堆栈