如何在git中对特定标记进行递归克隆?我知道以下命令列表将会这样做。但是有更短的方式吗?
$ git clone https://github.com/user/repo.git
$ cd repo
$ git checkout tags/<tag-name>
$ git submodule update --init --recursive
答案 0 :(得分:5)
在一行中递归克隆标记:
git clone --recursive --branch <tag-name> https://github.com/user/repo.git