SVNKit:如何从工作目录获取修订号
我想实现一种方法,可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您也可以使用 getCommitedRevision() 方法。它返回上次提交时特定文件的修订版本。
Also you can use
getCommittedRevision()
method. It returns revision for a particular file when it was last commited.