如何在git中递归克隆特定标记

时间:2017-06-26 19:58:58

标签: git github

如何在git中对特定标记进行递归克隆?我知道以下命令列表将会这样做。但是有更短的方式吗?

$ git clone https://github.com/user/repo.git
$ cd repo
$ git checkout tags/<tag-name> 
$ git submodule update --init --recursive

1 个答案:

答案 0 :(得分:5)

在一行中递归克隆标记:

git clone --recursive --branch <tag-name> https://github.com/user/repo.git