1.git checkout <branch-name>
2.git switch <branch-name>
如果是创建并要切换到新分支 可以使用带有 -b 选项的 git checkout 命令,或者使用 git switch -c 命令。
-b
git checkout
git switch -c
1.git checkout -b <new-branch-name>
2.git switch -c <new-branch-name>