创建本地分支 git checkout -b dev 查看所有分支 git branch -a 将本地分支与远程分支关联 git branch --set-upstream-to origin/dev 同步远程分支到本地 git pull