git clone -b 远程分支名 仓库地址
git branch -r #查看远程分支 git checkout -b 本地分支 origin/远程分支 #创建本地分支并关联 git branch --set-upstream-to origin/远程分支名 本地分支名 #已有本地分支创建关联 git pull #拉取