赞
踩
总是记不住,可能是因为用得少
如果 已经 clone了 master分支
方法 1:
那么 本地 git pull
然后执行
git checkout -b 本地分支名 origin/远程分支名
这样就能下载 到远程分支,并建立本地关联
方法2:
直接使用命令
git branch -r #查看远程分支
或
git branch -a #查看所有分支
会显示
origin/HEAD -> origin/master
origin/daily/1.2.2
origin/daily/1.3.0
origin/daily/1.4.1
origin/master
然后直接
git checkout origin/daily/1.4.1
就好了。。。
如果尚未克隆,那么
git clone -b test https://github.xxxx.git
test 是分支名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。