Git 基本操作笔记切换分支1$ git checkout -b test # 创建并切换
$ git switch master # git 2.23 之后
$ git switch -c dev
2021-09-01