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 17:58:28 UTC

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

Author: stsp
Date: Tue Oct  2 15:58:27 2012
New Revision: 1392997

URL: http://svn.apache.org/viewvc?rev=1392997&view=rev
Log:
* subversion/svn/main.c
  (svn_cl__cmd_table): More clearly document the distinction between WC->WC
   and URL->URL moves in 'svn help move'.

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=1392997&r1=1392996&r2=1392997&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/main.c (original)
+++ subversion/trunk/subversion/svn/main.c Tue Oct  2 15:58:27 2012
@@ -1079,8 +1079,10 @@ const svn_opt_subcommand_desc2_t svn_cl_
      "usage: move SRC... DST\n"
      "\n"
      "  SRC and DST can both be working copy (WC) paths or URLs:\n"
-     "    WC  -> WC:   move and schedule for addition (with history)\n"
-     "    URL -> URL:  complete server-side rename.\n"
+     "    WC  -> WC:  move an item in a working copy, as a local change to\n"
+     "                be committed later (with or without further changes)\n"
+     "    URL -> URL: move an item in the repository directly, immediately\n"
+     "                creating a new revision in the repository\n"
      "  All the SRCs must be of the same type.\n"
      "\n"
      "  When moving multiple sources, they will be added as children of DST,\n"