标签:ranch checkout 本地 远程分支 style none audio comment isp
//创建分支
git branch branchname
//创建并切换到新分支
git checkout -b branchname
//远程分支
git push origin branchname
//查看远程分支
git branch -r
git branch -d branchname
//删除远程分支
git push origin :branchname
标签:ranch checkout 本地 远程分支 style none audio comment isp
原文地址:https://www.cnblogs.com/sea-stream/p/10361273.html