qit切换分支
git checkout branchName
# 创建新的本地分支, 新本地分支的代码是从原有分支拷贝 git checkout -b newB # 将newB提交到远程仓库 git push -u origin newB