git clone指定版本号的分支
时间: 2023-11-21 17:58:45 浏览: 246
git clone 最新版
可以使用以下命令来克隆指定版本号的分支:
```
git clone -b <branch_name> --single-branch <repository_url>
```
其中,`<branch_name>`是指定的分支名称,`<repository_url>`是仓库的URL地址。如果要克隆指定版本号的分支,可以在`<repository_url>`后面加上commit的哈希值,例如:
```
git clone -b <branch_name> --single-branch <repository_url> <local_folder> && cd <local_folder> && git reset --hard <commit_hash>
```
其中,`<commit_hash>`是指定的commit版本号,`<local_folder>`是本地文件夹的名称。这个命令会先克隆指定分支的代码到本地文件夹,然后切换到本地文件夹并重置到指定的commit版本号。
阅读全文