实际上我想通过使用svn info标签的ant脚本知道任何文件夹或文件的信息。 所以请帮帮我....
答案 0 :(得分:0)
'$<!-- SVN info -->'
'<target name="svn-info">'
<svn>
<info
path="/workspace/project/trunk"
committedRevisionProperty="revisionVersion"
authorProperty="revisionAuthor"
committedDateProperty="revisionDate"
/>
</svn>
<!-- show revision, author and date -->
<property
name="version"
value="At revision ${revisionVersion} by ${revisionAuthor} on ${revisionDate}"
/>
<echo message="${version}"/>
</target>