svnkit.com是Java中的SVN库。例如,您可以按如下方式获取SVN存储库的日志:
SVNClientManager.newInstance().getLogClient();
SVNLogClient.doLog(SVNURL url, String[] paths, SVNRevision pegRevision, SVNRevision startRevision, SVNRevision endRevision, boolean stopOnCopy, boolean discoverChangedPaths,
boolean includeMergedRevisions, long limit, String[] revisionProperties, final ISVNLogEntryHandler handler);
如何列出SVN存储库的所有文件(不检出文件)?
答案 0 :(得分:2)
检查SvnList
。有关如何使用的示例,请查看org.tmatesoft.svn.test.ListTest#testListOnRepositoryRoot
等。因为它出现在SVNKit repository的最新版1.7.x分支中。