I would like to implement a method that can get the svn version number from the path where the SVN repository was uploaded. The method declaration will look something like this:
long getRevisionNumber(String localPath) { ... }
I am trying to use SVNKit for this, but it seems to require an SVN URL. Is there a way to start from a local path?
source
share