2017-06-26 68 views
0

如何在git中執行特定標記的遞歸克隆?我知道下面的命令列表將做到這一點。但有沒有更簡單的方法?如何遞歸克隆git中的特定標記

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

回答

1

循環克隆在一行標籤:

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