使用 SVNKIT 从 SVN 获取存储库内容

发布于 2024-10-17 19:35:22 字数 126 浏览 1 评论 0原文

我想比较 svn 中的 2 个存储库。我尝试制作使用 svn 从 svn 获取内容然后比较本地目录的程序。是否可以使用 svnkit 从 svn 获取内容而无需签出。我不想修改存储库中的任何内容。是否可以从下载中排除某些元素(例如图像)。

I want to compare 2 repositories in svn. I try to make program which get contents from svn using svn and then compare local directory. Is it possible to get contents from svn using svnkit without checking out. I do not want to modify anything in repository. Is it possible to exclude some elements like images from downloading.

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

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

发布评论

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

评论(1

寻找我们的幸福 2024-10-24 19:35:22

您可以使用 SVNKit 以及命令行:

svn cat URL/file.txt

但这意味着您必须逐个文件执行...上面的 svn cat 也可以使用 SVNKit 完成...

编辑:
正如我所写,您可以使用 SVNKit 完成所有操作,因此唯一的问题是查看文档。好的,您可以查看 SVNKit这里有如何获取文件内容的示例。另一个很好的信息来源是查看 SVNKit 的源代码,因为 Java 中有 svn 命令行客户端的完整实现,具有所有功能。

You can use SVNKit as well as the command line:

svn cat URL/file.txt

But this means you have to do file by file...The above svn cat can be done with SVNKit as well....

EDIT:
As i wrote you can do everything with SVNKit so the only problem was to take a look into the docs. Ok you can see the documentation of SVNKit and here you have examples how to get the contents of files. An other good source of information is to take a look at the source code of SVNKit, cause there are complete implementations of the svn command line client in Java with all features.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文