新建分支 git branch a #分支名称为a切换到develop分支 git checkout a 新建分支并切换 git checkout -b a推送到远程分支 git push origin a查看本地分支 git branch查看远程分支 git branch -r删除远程分支 git push origin :a