git branch 新分支名称
时间: 2024-08-15 12:07:47 浏览: 38
vim-gitbranch:提供当前git存储库的分支名称
创建一个新的Git分支可以使用`git branch`命令,具体操作如下:
```shell
git branch <new_branch_name>
```
这里 `<new_branch_name>` 是你想要创建的新分支的名称,例如如果你要创建名为 `feature-branch` 的新分支,命令就是:
```shell
git branch feature-branch
```
执行这个命令后,当前分支并不会切换到新分支,新分支会作为一个未检出的状态存在。如果你想将当前分支切换到新分支,可以使用:
```shell
git checkout <new_branch_name>
```
阅读全文