我想clone github上的分支,应该输入什么指令
时间: 2023-06-13 19:06:12 浏览: 99
Python-gitim用一个简单命令clone你的所有github仓库
可以使用以下指令来clone一个GitHub上的分支:
```
git clone -b <分支名> <GitHub仓库地址>
```
其中,`<分支名>`是你想要clone的分支名,`<GitHub仓库地址>`是你想要clone的GitHub仓库地址。
例如,如果想要clone名为`dev`的分支,可以使用以下指令:
```
git clone -b dev https://github.com/username/repository.git
```
这样就可以将`dev`分支上的代码clone到本地了。
阅读全文