文章目录
一、创建并切换分支 git switch -c dev
二、切换分支 git switch dev
一、创建并切换分支 git switch -c dev
git switch 是新版本 Git 提供的命令 ;
执行
git switch -c dev
命令 , 可以创建并切换到 dev 分支中 ; 该命令的效果等同于 git checkout -b dev ;
执行过程 :
D:\Git\git-learning-course>git switch -c dev Switched to a new branch 'dev' D:\Git\git-learning-course>
二、切换分支 git switch dev
执行
git switch master
或
git switch dev
命令 , 即可创建并切换 dev 或 master 分支 ;