You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by cm...@apache.org on 2010/11/22 15:49:32 UTC

svn propchange: r1037738 - svn:log

Author: cmpilato
Revision: 1037738
Modified property: svn:log

Modified: svn:log at Mon Nov 22 14:49:32 2010
------------------------------------------------------------------------------
--- svn:log (original)
+++ svn:log Mon Nov 22 14:49:32 2010
@@ -1,7 +1,35 @@
 Issue #3693 - Multi-target update output is quite confusing.
 
 Add notifications at the start of each performed update, and a summary
-at the end of the whole mess.
+at the end of the whole mess.  Here are samples of the new output:
+
+   $ _svn up UNVERSIONED
+   Skipped 'UNVERSIONED'
+   Summary of conflicts:
+     Skipped paths: 1
+   $ _svn up subversion
+   Updating 'subversion'...
+   At revision 1037740.
+   $ _svn up subversion svncorp
+   Updating 'subversion'...
+   At revision 1037740.
+   Updating 'svncorp'...
+   At revision 288.
+   Summary of updates:
+     Updated 'subversion' to r1037740.
+     Updated 'svncorp' to r288.
+   $ _svn up subversion svncorp UNVERSIONED
+   Updating 'subversion'...
+   At revision 1037740.
+   Updating 'svncorp'...
+   At revision 288.
+   Skipped 'UNVERSIONED'
+   Summary of updates:
+     Updated 'subversion' to r1037740.
+     Updated 'svncorp' to r288.
+   Summary of conflicts:
+     Skipped paths: 1
+   $
 
 * subversion/svn/update-cmd.c
   (print_update_summary): New helper function.