config.txt: move pager.* 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
87e1b41a304907d5f15310fd9174890a0a0901b0
2 files changed
+9
-8
Documentation/config.txt
+1
-8
@@ -379,14 +379,7 @@ include::config/notes.txt[]
379
380
include::config/pack.txt[]
381
382
-pager.<cmd>::
383
- If the value is boolean, turns on or off pagination of the
384
- output of a particular Git subcommand when writing to a tty.
385
- Otherwise, turns on pagination for the subcommand using the
386
- pager specified by the value of `pager.<cmd>`. If `--paginate`
387
- or `--no-pager` is specified on the command line, it takes
388
- precedence over this option. To disable pagination for all
389
- commands, set `core.pager` or `GIT_PAGER` to `cat`.
382
+include::config/pager.txt[]
383
384
pretty.<name>::
385
Alias for a --pretty= format string, as specified in
Documentation/config/pager.txt
new
+8
@@ -0,0 +1,8 @@
1
+pager.<cmd>::
2
+ If the value is boolean, turns on or off pagination of the
3
+ output of a particular Git subcommand when writing to a tty.
4
+ Otherwise, turns on pagination for the subcommand using the
5
+ pager specified by the value of `pager.<cmd>`. If `--paginate`
6
+ or `--no-pager` is specified on the command line, it takes
7
+ precedence over this option. To disable pagination for all
8
+ commands, set `core.pager` or `GIT_PAGER` to `cat`.