如何为Git存储库更新ClearCase ant脚本命令?

时间:2019-07-03 07:35:26

标签: java git ant clearcase

我在ClearCase中使用以下ant脚本,现在将其迁移到Git。

有人可以帮助您理解它并将其修改为Git:

<target name="updateViewDir"> <!-- Update the view Dir --> 
<exec dir="${updDir}" executable="cmd"> 
<arg value="/c"/> <arg value="cleartool update ."/> 
</exec> 
</target>

1 个答案:

答案 0 :(得分:0)

正如我在您的previous question中所提到的,cleartool update将是git pull(前提是已经克隆了Git存储库)

所以,就您而言:

<target name="updateViewDir"> <!-- Update the Git repository working tree Dir --> 
  <exec dir="${updDir}" executable="cmd"> 
    <arg value="/c"/> <arg value="git pull"/> 
  </exec> 
</target>