Given a file, how do i get its revision in the repository without checking it out? Is there a way or function in SVNKit that allow me to do so?
For example I hava a file named foo.java, how would i know the current revision of the file without checking it out?
It'll would be nice if you can provide same code snippet.
Thank You very much
Linda
The
SVNRepository
class has twogetFileRevisions
methods.I haven't used either method, but it appears from the documentation that you get a revision history from a start revision number to an ending revision number. Specifying 0 and last revision number, respectively, gives the complete revision history.