git clone 至 指定版本
时间: 2023-12-27 22:24:25 浏览: 998
git clone 最新版
要将Git存储库克隆到指定版本,可以使用`git clone`命令的`--branch`选项。以下是一个示例命令:
```shell
git clone --branch <branch_name> <repository_url> --depth 1
```
其中,`<branch_name>`是要克隆的特定版本的分支或标签的名称,`<repository_url>`是存储库的URL。
例如,如果要克隆名为1.0.0的标签的代码,可以执行以下命令:
```shell
git clone --branch 1.0.0 <repository_url> --depth 1
```
这将克隆存储库的1.0.0标签版本到当前目录中。
阅读全文