结账和更新等SVNKIT详细信息

时间:2015-11-30 15:38:25

标签: java svnkit

我正在使用SVNKIT版本1.8.11,并希望向控制台输出更详细的消息,显示正在检出或更新的文件。

如果有此代码段:

    System.out.println("Updating... '" + workingCopyDirectory.toString()  + "'");
    final SvnOperationFactory svnOperationFactory = new SvnOperationFactory();
    svnOperationFactory.setAuthenticationManager(getAuthManager().getAuthenticationManager());
    try {
        final SvnUpdate svnUpdate = svnOperationFactory.createUpdate();
        svnUpdate.setSingleTarget(SvnTarget.fromFile(workingCopyDirectory.toFile()));
        svnUpdate.setAllowUnversionedObstructions(false);
        svnUpdate.setDepth(SVNDepth.INFINITY);
        svnUpdate.run();
        System.out.println("Update of local code base '" + workingCopyDirectory.toString() + "' completed.");
    } finally {
        svnOperationFactory.dispose();
    }

有没有办法可以配置SVNKIT来告诉我当前正在更新/检出的文件?

0 个答案:

没有答案