SVNKit:如何从工作目录获取修订号

发布于 2024-08-30 15:19:35 字数 193 浏览 5 评论 0原文

我想实现一种方法,可以从 SVN 存储库已检出的路径获取 svn 修订号。方法声明看起来像这样:

long getRevisionNumber(String localPath) { ... }

我正在尝试使用 SVNKit 来实现此目的,但它似乎需要 SVN URL 来启动。有没有办法从本地路径开始?

I would like to implement a method that can get the svn revision number from the path where a SVN repository has been checked out. The method declaration would look something like this:

long getRevisionNumber(String localPath) { ... }

I'm trying to use SVNKit for this, but it seems to require an SVN URL to start with. Is there any way to start with a local path?

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

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

发布评论

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

评论(2

不弃不离 2024-09-06 15:19:35
public static long getRevisionNumber(String localPath) throws SVNException {
    final SVNStatus status = SVNClientManager.newInstance().getStatusClient().doStatus(new File(localPath), false);
    return status != null ? status.getRevision().getNumber() : -1;
}
public static long getRevisionNumber(String localPath) throws SVNException {
    final SVNStatus status = SVNClientManager.newInstance().getStatusClient().doStatus(new File(localPath), false);
    return status != null ? status.getRevision().getNumber() : -1;
}
墨离汐 2024-09-06 15:19:35

您也可以使用 getCommitedRevision() 方法。它返回上次提交时特定文件的修订版本。

clientManager.getStatusClient().doStatus(destination, false).getCommittedRevision().getNumber();

Also you can use getCommittedRevision() method. It returns revision for a particular file when it was last commited.

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