RE: how to use getLogMessages(java.io.File path, SVNRevision revisionStart, SVNRevision revisionEnd) to get all revisions of a file?

View: New views
1 Messages — Rating Filter:   Alert me  

RE: how to use getLogMessages(java.io.File path, SVNRevision revisionStart, SVNRevision revisionEnd) to get all revisions of a file?

by John Langley-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


I found this approach in the test code in: org.tigris.subversion.svnclientadapter.basictests.LogTest

SVNRevision start = new SVNRevision.Number(1);
SVNRevision end = SVNRevision.HEAD;
history = svnClient.getLogMessages(new File(fileName), start, end);

That does the trick!


-- Langley