git clone 指定克隆分支
时间: 2023-11-11 11:00:04 浏览: 101
git克隆远程仓库的指定分支方法(附常用git配置命令)
可以使用以下命令来指定克隆分支:
```
git clone -b <branch_name> <remote_repo_url>
```
其中,`<branch_name>` 是要克隆的分支名称,`<remote_repo_url>` 是远程仓库的 URL。
例如,要克隆名为 `develop` 的分支,可以使用以下命令:
```
git clone -b develop https://github.com/user/repo.git
```
阅读全文