切换分支

# 切换分支
git switch 分支名
 
# 创建+切换分支
git checkout 分支名
 
# 创建并切换到 dev 分支
git checkout -b dev