git clone -branch
时间: 2023-08-08 09:11:32 浏览: 224
Git clone
要隆指定分支的 Git 仓库,您可以使用以下命令:
```
git clone -b <branch_name> <repository_url>
```
将 `<branch_name>` 替换为您想要克隆的分支的名称,`<repository_url>` 替换为您要克隆的仓库的 URL。
例如,要克隆名为 `development` 的分支,您可以运行以下命令:
```
git clone -b development https://github.com/example/repository.git
```
请确保将 `<repository_url>` 替换为您要克隆的实际仓库 URL。
阅读全文