Git子模块命令
2020-02-23 本文已影响0人
莫忘初心_倒霉熊
- 添加子仓库
git submodule add <git url>
- 子仓库初始化
git submodule init
- 子仓库更新
git submodule update
- 子仓库切换分支
git submodule foreach git checkout <branch-name>
- 子仓库切换版本
git submodule foreach git reset -- hard <commit-id>
- 子仓库拉取更新
git submodule