SVN将更改日志导出到特定文件夹

发布于 2024-11-02 22:49:42 字数 369 浏览 2 评论 0 原文

我正在使用以下命令从 SVN 获取更改日志。

C:\Sync\BatchFiles>svn log http://10.32.10.56/svn/Repository/trunk -v -r {2011
    -03-25}:{2011-03-29} --xml  file://C:/Sync/XMLFiles/SVN_Export.xml

我需要将日志文件复制到本地系统上的特定文件夹。但是当我运行命令时出现以下错误。

svn: Only relative paths can be specified after a URL

有人可以告诉我是否可以指定日志文件的输出位置吗?

I'm using the below command to get the change log from SVN.

C:\Sync\BatchFiles>svn log http://10.32.10.56/svn/Repository/trunk -v -r {2011
    -03-25}:{2011-03-29} --xml  file://C:/Sync/XMLFiles/SVN_Export.xml

I need to copy the log file to a specific folder on my local system.But I get the below error when I run the command.

svn: Only relative paths can be specified after a URL

Can someone please let me know if it is possible to specify the output location of the log file?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灼痛 2024-11-09 22:49:43

--xml 仅表示输出应为 xml 格式,它不接受要写入的文件。它只是输出到控制台。您可以将其重定向到文件:

svn log http://10.32.10.56/svn/Repository/trunk -v -r {2011-03-25}:{2011-03-29} --xml 
    > C:/Sync/XMLFiles/SVN_Export.xml

--xml only says the output should be in xml, it does not take in a file to write to. It just outputs to console. You can do redirect it to a file:

svn log http://10.32.10.56/svn/Repository/trunk -v -r {2011-03-25}:{2011-03-29} --xml 
    > C:/Sync/XMLFiles/SVN_Export.xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文