使用 SVNKIT 从 SVN 获取存储库内容
我想比较 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SVNKit 以及命令行:
但这意味着您必须逐个文件执行...上面的 svn cat 也可以使用 SVNKit 完成...
编辑:
正如我所写,您可以使用 SVNKit 完成所有操作,因此唯一的问题是查看文档。好的,您可以查看 SVNKit 和 这里有如何获取文件内容的示例。另一个很好的信息来源是查看 SVNKit 的源代码,因为 Java 中有 svn 命令行客户端的完整实现,具有所有功能。
You can use SVNKit as well as the command line:
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.