English 中文(简体)
使用 ant 使用 ant 添加文件到 svn
原标题:adding file to svn using ant
  • 时间:2012-05-26 03:35:30
  •  标签:
  • svn
  • ant

当我从 CVS 移动到 SVN Im 试图使用 蚂蚁在 svn 中添加文件 。

我的“坚固”建筑. 产权 < /坚固” :

svn.root=http://svn/projects2

svn.rsh=/usr/bin/ssh

我的.xml 脚本 :

<svn>
            <add 
                path="${relative.metadata}/Build_@{product}_@{major}.@{minor.next}"
                cvsRoot="${svn.root}" 
                cvsRsh="${svn.rsh}" />

            <add 
                path="${relative.metadata}/Build_@{product}_@{major}.@{minor.next}/master-@{product}_@{major}.@{minor.next}.sql"
                cvsRoot="${svn.root}" 
                cvsRsh="${svn.rsh}" />

            <add 
                path="-q commit -m  Adding the next build directory  ${relative.metadata}/Build_@{product}_@{major}.@{minor.next}"
                cvsRoot="${svn.root}"
                cvsRsh="${svn.rsh}" />

        </svn>

正如你所看到的,它混合了使用 CVS 和 SVN 的 CVS, 所以我确定这样做是错误的。 我只是试图用这种脚本将一个文件输入 SVN 。 我是不是把它弄得比真的复杂了?

好吧,我做了一些研究,这是我目前为止的...

我的建筑。 产权包含这个

Svn.repo.url=http://svn.project.com/projects http://svn.repo.url=http://svn.project.com/projects

我的Xml是现在这个

<property name="svn.repository.url" value="${svn.repo.url}"/>

<svn>
      <add
          dir="${relative.metadata}/Build_@{product}_@{major}.@{minor.next}"/>

</svn>

所以,我的问题是,现在,什么是缺少 这个行动成功?

问题回答