gitlab clone 选择分支
时间: 2023-10-21 11:04:12 浏览: 103
git clone远程分支
要在 GitLab 上克隆一个特定分支的代码库,你可以使用以下命令:
```
git clone -b branch_name git://github.com/user/repo.git
```
其中,`branch_name` 是你想要克隆的分支的名称,`user` 是代码库的所有者的用户名,`repo` 是代码库的名称。
另外,如果你已经克隆了代码库,可以通过以下命令检出特定分支:
```
git checkout branch_name
```
在这里,`branch_name` 是你想要检出的分支的名称。
阅读全文