config.txt: move help.* to a separate file

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Nguyễn Thái Ngọc Duy committed Oct 27, 2018 at 08:23 UTC d3df42705d7ffbc5498be7ef77ee9f068f1c219a
2 files changed +24 -23
Documentation/config.txt
+1 -23
@@ -347,29 +347,7 @@ include::config/gui.txt[]
347
348 include::config/guitool.txt[]
349
350 -help.browser::
351 - Specify the browser that will be used to display help in the
352 - 'web' format. See linkgit:git-help[1].
353 -
354 -help.format::
355 - Override the default help format used by linkgit:git-help[1].
356 - Values 'man', 'info', 'web' and 'html' are supported. 'man' is
357 - the default. 'web' and 'html' are the same.
358 -
359 -help.autoCorrect::
360 - Automatically correct and execute mistyped commands after
361 - waiting for the given number of deciseconds (0.1 sec). If more
362 - than one command can be deduced from the entered text, nothing
363 - will be executed. If the value of this option is negative,
364 - the corrected command will be executed immediately. If the
365 - value is 0 - the command will be just shown but not executed.
366 - This is the default.
367 -
368 -help.htmlPath::
369 - Specify the path where the HTML documentation resides. File system paths
370 - and URLs are supported. HTML pages will be prefixed with this path when
371 - help is displayed in the 'web' format. This defaults to the documentation
372 - path of your Git installation.
350 +include::config/help.txt[]
351
352 http.proxy::
353 Override the HTTP proxy, normally configured using the 'http_proxy',
Documentation/config/help.txt new
+23
@@ -0,0 +1,23 @@
1 +help.browser::
2 + Specify the browser that will be used to display help in the
3 + 'web' format. See linkgit:git-help[1].
4 +
5 +help.format::
6 + Override the default help format used by linkgit:git-help[1].
7 + Values 'man', 'info', 'web' and 'html' are supported. 'man' is
8 + the default. 'web' and 'html' are the same.
9 +
10 +help.autoCorrect::
11 + Automatically correct and execute mistyped commands after
12 + waiting for the given number of deciseconds (0.1 sec). If more
13 + than one command can be deduced from the entered text, nothing
14 + will be executed. If the value of this option is negative,
15 + the corrected command will be executed immediately. If the
16 + value is 0 - the command will be just shown but not executed.
17 + This is the default.
18 +
19 +help.htmlPath::
20 + Specify the path where the HTML documentation resides. File system paths
21 + and URLs are supported. HTML pages will be prefixed with this path when
22 + help is displayed in the 'web' format. This defaults to the documentation
23 + path of your Git installation.