15

我有一个依赖于 Twitter bootstrap 2.x 的项目,但是,当我使用以下命令将 bootstrap 添加为子模块时:

git submodule add https://github.com/twbs/bootstrap.git

这带来了最新版本的引导程序。

我想为特定标签创建一个子模块,但还没有找到方法。这可能吗?

4

1 回答 1

25

创建子模块后:

cd /path/to/yoursubmodule
git checkout yourTag
cd ..
git add yoursubmodule
git commit -m "use submoduile at tag xx"
git push

您以这种方式记录您想要某个标签处的子模块的事实。

于 2013-09-12T06:15:26.933 回答