diff options
author | Brian Gernhardt <benji@silverinsanity.com> | 2007-07-03 14:18:11 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-07-04 10:09:32 -0700 |
commit | 54adf3706c5c799584c1bcdcac96fb3285b97de4 (patch) | |
tree | c53c89a333064d050f77ad622f62891e77e1483b /Documentation/config.txt | |
parent | 41c7c1bd6f151f351365451acbf9fade6eb6044c (diff) | |
download | git-54adf3706c5c799584c1bcdcac96fb3285b97de4.tar.gz git-54adf3706c5c799584c1bcdcac96fb3285b97de4.tar.xz |
Add core.pager config variable.
This adds a configuration variable that performs the same function as,
but is overridden by, GIT_PAGER.
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Acked-by: Johannes E. Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 1d96adf30..66a55b051 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -281,6 +281,10 @@ core.excludesfile:: of files which are not meant to be tracked. See gitlink:gitignore[5]. +core.pager:: + The command that git will use to paginate output. Can be overridden + with the `GIT_PAGER` environment variable. + alias.*:: Command aliases for the gitlink:git[1] command wrapper - e.g. after defining "alias.last = cat-file commit HEAD", the invocation |