Differences between revisions 1 and 2
Revision 1 as of 2008-09-03 15:04:39
Size: 117
Editor: 194
Comment:
Revision 2 as of 2008-09-03 15:06:52
Size: 391
Editor: 194
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

{{{#!java
            /*
             * This corresponds to 'svn diff -rBASE'.
             */
            diffClient.doDiff(wcRoot, SVNRevision.UNDEFINED, SVNRevision.WORKING, SVNRevision.BASE,
                    SVNDepth.INFINITY, true, System.out, null);

}}}

This example differs from Diffing a working copy against a repository in parameters passed to an SVNDiffClient:

   1             /*
   2              * This corresponds to 'svn diff -rBASE'.
   3              */
   4             diffClient.doDiff(wcRoot, SVNRevision.UNDEFINED, SVNRevision.WORKING, SVNRevision.BASE,
   5                     SVNDepth.INFINITY, true, System.out, null);

Diffing a working copy against a base revision (last edited 2008-09-04 15:56:34 by 194)