SVNKit:检索特定修订版的文件

发布于 2024-08-26 23:56:29 字数 569 浏览 4 评论 0原文

我正在编写一个工具,它将在提交到 svn 后将更改推送到数据库。

问题是如何检索特定修订的目录。

SVNClientImpl clientImpl = SVNClientImpl.newInstance();
clientImpl.username(name);
clientImpl.password(password);
DirEntry[] dirs = clientImpl.list(url, Revision.getInstance(revision), true);
for (DirEntry d : dirs) {
   if (d.getLastChangedRevisionNumber() != revision)
      System.out.println(d.getLastChangedRevisionNumber());
}

问题是,在这种情况下,list() 会从 url 中检索所有目录,无论它们有什么修订版本。当然,我可以使用 if 剥离它们(就像现在所做的那样),但我认为这不是一个好的方法。

有具体的方法吗?

I'm writing a tool which will push changes to database after commit to svn.

The question is how to retrieve dirs for particular revision.

SVNClientImpl clientImpl = SVNClientImpl.newInstance();
clientImpl.username(name);
clientImpl.password(password);
DirEntry[] dirs = clientImpl.list(url, Revision.getInstance(revision), true);
for (DirEntry d : dirs) {
   if (d.getLastChangedRevisionNumber() != revision)
      System.out.println(d.getLastChangedRevisionNumber());
}

The thing is that in list() in this case retrives all dirs from url, no matter what revision they have. Of course I can stripped them using if(as it is done now), but I don't think it's good approach.

Is there a specific method for that?

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

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

发布评论

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

评论(1

却一份温柔 2024-09-02 23:56:29

AFAIK 没有这样的方法,如果有的话,SVN 协议也必须支持这种查询,否则你将不会获得性能提升。您可以发出 log() 来找出目标修订版的更改路径并查询每个路径的存储库。

AFAIK there is no such method and if there would be one, the SVN protocol would have to support this kind of query too, otherwise you will gain no performance improvement. You may issue a log() to find out changed paths of your target revision and query the repository for each of them.

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