repo使用ssh和http方式来拉去代码的xml配置

我们使用repo拉取代码的时候,可以灵活切换ssh或者http的方式来拉取代码;特别是有时候要设置http代理的时候,ssh方式无法获取网络连接,则需要切换为http方式

1:使用SSH方式拉取代码

repo init 指令

repo init -u [email protected]:dujunqiu/project_pc.git -b dev -m manifests/dev.xml

ssh的XML配置


<manifest>
  <remote  name="gitlab" fetch=".."  review="gitlab.dujunqiu.com"/>
  <remote  name="origin" fetch="ssh://[email protected]" review="gitlab.dujunqiu.com" revision="dev"/>
  <default revision="dev" remote="origin" sync-c="true" sync-j="4"/>

  <project path="djq-951" name="ssc/projects/automation/djq-951" />
  <project path="env_pc" name="ssc/projects/sdks/sdk_pc" />
  <project path="env_ec200a" name="ssc/projects/sdks/env_ec200a"/>
<manifest> 

2:使用http方式拉取代码

repo init指令

repo init -u http://gitlab.dujunqiu.com/dujunqiu/project_pc.git -b http -m manifests/http.xml \

http的XML配置


<manifest>
  <remote  name="origin" fetch="http://gitlab.dujunqiu.com" />
  <default revision="dev" remote="origin" sync-c="true" sync-j="4"/>

  <project path="djq-951" name="ssc/projects/automation/djq-951" />
  <project path="env_pc" name="ssc/projects/sdks/sdk_pc" />
  <project path="env_ec200a" name="ssc/projects/sdks/env_ec200a"/>
<manifest> 

你可能感兴趣的:(工具使用,ssh,运维)