git bash here 拉取代码 -b
时间: 2024-05-06 20:03:53 浏览: 127
github创建仓库及gitbash代码管理
要在 Git Bash 中拉取代码并切换到指定分支,可以使用以下命令:
```
git clone <仓库地址> -b <分支名>
```
其中,`<仓库地址>`是你要拉取代码的仓库地址,`<分支名>`是你要切换的分支名称。例如,如果你要拉取名为 `myproject` 的仓库的 `develop` 分支,可以使用以下命令:
```
git clone https://github.com/username/myproject.git -b develop
```
这将会在当前目录下创建一个 `myproject` 文件夹,并将 `develop` 分支的代码拉取到该文件夹中。如果你已经在 Git Bash 中进入了指定的目录,可以在命令末尾加上 `.`,表示将代码拉取到当前目录中:
```
git clone https://github.com/username/myproject.git -b develop .
```
阅读全文