git clone 不指定分支
https://example.com/account/service.git //默认拉master主分支的代码
git clone 指定分支
git clone -b branch2 https://example.com/account/service.git
加上-b参数,后面跟上分支名,以上面为例,branch2就是另外一个分支
https://example.com/account/service.git //默认拉master主分支的代码
git clone -b branch2 https://example.com/account/service.git
加上-b参数,后面跟上分支名,以上面为例,branch2就是另外一个分支