赞
踩
可通过 git branch --list查询分支
git branch --list
克隆指定分支git clone -b <指定分支名> <远程仓库地址>
git clone -b <指定分支名> <远程仓库地址>
切换分支git checkout <指定分支名>
git checkout <指定分支名>
上传文件:
git add . git commit -m "提交信息" git push -u origin <指定分支名>