Author: julianfoad
Date: Wed Mar 2 13:32:39 2022
New Revision: 1898527
URL: http://svn.apache.org/viewvc?rev=1898527&view=rev
Log:
Multi-WC-format: in help, tell about default WC format.
* subversion/svn/svn.c
(svn_cl__cmd_table_main): Add paragraphs to 'checkout' and 'upgrade' help.
Modified:
subversion/trunk/subversion/svn/svn.c
Modified: subversion/trunk/subversion/svn/svn.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/svn.c?rev=1898527&r1=1898526&r2=1898527&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/svn.c (original)
+++ subversion/trunk/subversion/svn/svn.c Wed Mar 2 13:32:39 2022
@@ -514,6 +514,12 @@ svn_cl__cmd_table_main[] =
"Check out a working copy from a repository.\n"
"usage: checkout URL[@REV]... [PATH]\n"
"\n"), N_(
+ " By default Subversion will create a WC format compatible with\n"
+ " Subversion 1.8 and newer. To create a different WC format,\n"
+ " use an option such as '--compatible-version=1.15'.\n"
+ " The versions available are the same as in the 'upgrade' command.\n"
+ " Use 'svn --version' to see the compatible versions supported.\n"
+ "\n"), N_(
" If specified, REV determines in which revision the URL is first\n"
" looked up.\n"
"\n"), N_(
@@ -1909,6 +1915,14 @@ svn_cl__cmd_table_main[] =
"Upgrade the metadata storage format for a working copy.\n"
"usage: upgrade [WCPATH...]\n"
"\n"), N_(
+ " By default Subversion will upgrade the working copy to a version\n"
+ " compatible with Subversion 1.8 and newer. To upgrade to a different\n"
+ " version, use an option such as '--compatible-version=1.15'.\n"
+ " The versions available are the same as in the 'checkout' command.\n"
+ " Use 'svn --version' to see the compatible versions supported.\n"
+ "\n"), N_(
+ " Only upgrades are supported, not downgrades.\n"
+ "\n"), N_(
" Local modifications are preserved.\n"
)},
{ 'q', opt_compatible_version } },