分支命令 查看本地分支 git branch查看远程分支 git branch -r查看所有分支 git branch -a创建本地分支 git branch test 创建远程分支 git push origin test:test切换本地分支 git checkout test 切换远程分支 git checkout -b test origin/test删除本地分支 git brand -d test 删除远程分支 git push origin -d test