git 命令切换分支
时间: 2023-10-10 08:13:49 浏览: 79
要在Git中切换分支,可以使用以下命令:
1. 查看所有分支:`git branch`
2. 创建新分支并切换到该分支:`git checkout -b <branchname>`
. 切换到已存在的分支:`git checkout <branchname>`
例如,如果要切换到名为"feature"的分支,可以使用命令 `git checkout feature`。如果该分支不存在,可以使用 `git checkout -b feature` 创建并切换到该分支。
阅读全文