赞
踩
命令:git init ;
b. 克隆git主分支master
命令:git clone http://xxxxxx.xxx.xx.git; (克隆完成后,此时本地为master分支)
c. 使用git命令拉取指定分支
命令:git clone -b develop http://xxxxxx.xxx.xx.git; (其中develop就是分支的名称)
d. 切换其他分支,查看其他分支
命令:git branch;
e. 切换到目标分支
命令:git checkout develop; (develop为目标分支)
命令:git init
b. 自己要与origin master建立连接(下划线为远程仓库链接)
命令:git remote add origin http://xxxxxx.xxx.xx.git
c. 把远程分支拉到本地
命令:git fetch origin develop_v1.0.0(develop_v1.0.0为远程仓库的分支名)
d. 在本地创建分支dev并切换到该分支
命令:git checkout -b develop_v1.0.0(本地分支名称) origin/develop_v1.0.0(远程分支名称)
e. 把远程分支上的内容都拉取到本地
命令:git pull origin develop_v1.0.0(远程分支名称)
如果还需要拉取其他分支,那么重复方法二步骤,把目标分支改一下即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。