You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/10/02 18:38:46 UTC

svn commit: r1393022 - /subversion/trunk/subversion/svn/main.c

Author: stsp
Date: Tue Oct  2 16:38:46 2012
New Revision: 1393022

URL: http://svn.apache.org/viewvc?rev=1393022&view=rev
Log:
* subversion/svn/main.c
 (svn_cl__cmd_table): Make 'svn help copy' first explain what SRC and DST    
  arguments are, and then explain what happens in the special case of
  multiple SRC arguments. Seems more sensible than the other way around.

Modified:
    subversion/trunk/subversion/svn/main.c

Modified: subversion/trunk/subversion/svn/main.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/main.c?rev=1393022&r1=1393021&r2=1393022&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/main.c (original)
+++ subversion/trunk/subversion/svn/main.c Tue Oct  2 16:38:46 2012
@@ -489,15 +489,13 @@ const svn_opt_subcommand_desc2_t svn_cl_
      "history.\n"
      "usage: copy SRC[@REV]... DST\n"
      "\n"
-     "  When copying multiple sources, they will be added as children of DST,\n"
-     "  which must be a directory.\n"
-     "\n"
      "  SRC and DST can each be either a working copy (WC) path or URL:\n"
      "    WC  -> WC:   copy and schedule for addition (with history)\n"
      "    WC  -> URL:  immediately commit a copy of WC to URL\n"
      "    URL -> WC:   check out URL into WC, schedule for addition\n"
      "    URL -> URL:  complete server-side copy;  used to branch and tag\n"
-     "  All the SRCs must be of the same type.\n"
+     "  All the SRCs must be of the same type. When copying multiple sources,\n"
+     "  they will be added as children of DST, which must be a directory.\n"
      "\n"
      "  WARNING: For compatibility with previous versions of Subversion,\n"
      "  copies performed using two working copy paths (WC -> WC) will not\n"