From 87e1b41a304907d5f15310fd9174890a0a0901b0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nguy=E1=BB=85n=20Th=C3=A1i=20Ng=E1=BB=8Dc=20Duy?= Date: Sat, 27 Oct 2018 08:23:23 +0200 Subject: [PATCH] config.txt: move pager.* to a separate file MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- Documentation/config.txt | 9 +-------- Documentation/config/pager.txt | 8 ++++++++ 2 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 Documentation/config/pager.txt diff --git a/Documentation/config.txt b/Documentation/config.txt index 4e839db64c..a7b72d2722 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -379,14 +379,7 @@ include::config/notes.txt[] include::config/pack.txt[] -pager.:: - If the value is boolean, turns on or off pagination of the - output of a particular Git subcommand when writing to a tty. - Otherwise, turns on pagination for the subcommand using the - pager specified by the value of `pager.`. If `--paginate` - or `--no-pager` is specified on the command line, it takes - precedence over this option. To disable pagination for all - commands, set `core.pager` or `GIT_PAGER` to `cat`. +include::config/pager.txt[] pretty.:: Alias for a --pretty= format string, as specified in diff --git a/Documentation/config/pager.txt b/Documentation/config/pager.txt new file mode 100644 index 0000000000..d3731cf66c --- /dev/null +++ b/Documentation/config/pager.txt @@ -0,0 +1,8 @@ +pager.:: + If the value is boolean, turns on or off pagination of the + output of a particular Git subcommand when writing to a tty. + Otherwise, turns on pagination for the subcommand using the + pager specified by the value of `pager.`. If `--paginate` + or `--no-pager` is specified on the command line, it takes + precedence over this option. To disable pagination for all + commands, set `core.pager` or `GIT_PAGER` to `cat`. -- 2.47.1