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?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted
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;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.