config.txt: move man.* 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 f7ade6c98045d27039a76691657d2fbf08e527fc
2 files changed +13 -12
Documentation/config.txt
+1 -12
@@ -369,18 +369,7 @@ include::config/mailinfo.txt[]
369
370 include::config/mailmap.txt[]
371
372 -man.viewer::
373 - Specify the programs that may be used to display help in the
374 - 'man' format. See linkgit:git-help[1].
375 -
376 -man.<tool>.cmd::
377 - Specify the command to invoke the specified man viewer. The
378 - specified command is evaluated in shell with the man page
379 - passed as argument. (See linkgit:git-help[1].)
380 -
381 -man.<tool>.path::
382 - Override the path for the given tool that may be used to
383 - display help in the 'man' format. See linkgit:git-help[1].
372 +include::config/man.txt[]
373
374 include::merge-config.txt[]
375
Documentation/config/man.txt new
+12
@@ -0,0 +1,12 @@
1 +man.viewer::
2 + Specify the programs that may be used to display help in the
3 + 'man' format. See linkgit:git-help[1].
4 +
5 +man.<tool>.cmd::
6 + Specify the command to invoke the specified man viewer. The
7 + specified command is evaluated in shell with the man page
8 + passed as argument. (See linkgit:git-help[1].)
9 +
10 +man.<tool>.path::
11 + Override the path for the given tool that may be used to
12 + display help in the 'man' format. See linkgit:git-help[1].