Git拉取分支

git clone 不指定分支

https://example.com/account/service.git   //默认拉master主分支的代码

 

git clone 指定分支

git clone -b branch2 https://example.com/account/service.git

加上-b参数,后面跟上分支名,以上面为例,branch2就是另外一个分支

 

发表评论

邮箱地址不会被公开。 必填项已用*标注