# HG changeset patch # User timeless # Date 1452402289 0 # Node ID 6a63fd8dd4862c870277b0132ce226e214750265 # Parent 6ff556ef5a46e29d14f2bd5e3d0ddc873d57cf3a help: split config ui.portablefilenames diff -r 6ff556ef5a46 -r 6a63fd8dd486 mercurial/help/config.txt --- a/mercurial/help/config.txt Tue Jan 12 22:40:40 2016 -0500 +++ b/mercurial/help/config.txt Sun Jan 10 05:04:49 2016 +0000 @@ -1629,14 +1629,29 @@ ``portablefilenames`` Check for portable filenames. Can be ``warn``, ``ignore`` or ``abort``. (default: ``warn``) - If set to ``warn`` (or ``true``), a warning message is printed on POSIX - platforms, if a file with a non-portable filename is added (e.g. a file - with a name that can't be created on Windows because it contains reserved - parts like ``AUX``, reserved characters like ``:``, or would cause a case - collision with an existing file). - If set to ``ignore`` (or ``false``), no warning is printed. - If set to ``abort``, the command is aborted. - On Windows, this configuration option is ignored and the command aborted. + + ``warn`` + Print a warning message on POSIX platforms, if a file with a non-portable + filename is added (e.g. a file with a name that can't be created on + Windows because it contains reserved parts like ``AUX``, reserved + characters like ``:``, or would cause a case collision with an existing + file). + + ``ignore`` + Don't print a warning. + + ``abort`` + The command is aborted. + + ``true`` + Alias for ``warn``. + + ``false`` + Alias for ``ignore``. + + .. container:: + + On Windows, this configuration option is ignored and the command aborted. ``quiet`` Reduce the amount of output printed. (default: False)