方法一
git clone -b 远程分支名称 代码仓库地址
方法二
git init git remote add origin 代码仓库地址 # 与远程代码仓库建立连接 git fetch origin 远程分支名称 # 将远程分支拉到本地 git checkout -b 本地分支名称 origin/远程分支名称 git pull origin 远程分支名称
git clone -b 远程分支名称 代码仓库地址
git init git remote add origin 代码仓库地址 # 与远程代码仓库建立连接 git fetch origin 远程分支名称 # 将远程分支拉到本地 git checkout -b 本地分支名称 origin/远程分支名称 git pull origin 远程分支名称