worley@xxxxxxxxxxxx (Dale R. Worley) writes: >> From: Junio C Hamano <gitster@xxxxxxxxx> >> >> > I've noticed that Git by default puts long output through "less" as a >> > pager. I don't like that, but this is not the time to change >> > established behavior. But while tracking that down, I noticed that >> > the paging behavior is controlled by at least 5 things: >> > >> > the -p/--paginate/--no-pager options >> > the GIT_PAGER environment variable >> > the PAGER environment variable >> > the core.pager Git configuration variable >> > the build-in default (which seems to usually be "less") >> > ... >> > What is the (intended) order of precedence of specifiers of paging >> > behavior? My guess is that it should be the order I've given above. >> >> I think that sounds about right (I didn't check the code, though). >> The most specific to the command line invocation (i.e. option) >> trumps the environment, which trumps the configured default, and the >> hard wired stuff is used as the fallback default. >> >> I am not sure about PAGER environment and core.pager, though. >> People want Git specific pager that applies only to Git process >> specified to core.pager, and still want to use their own generic >> PAGER to other programs, so my gut feeling is that it would make >> sense to consider core.pager a way to specify GIT_PAGER without >> contaminating the environment, and use both to override the generic >> PAGER (in other words, core.pager should take precedence over PAGER >> as far as Git is concerned). > > I've just discovered this bit of documentation. Within the git-var > manual page is this entry: > > GIT_PAGER > Text viewer for use by git commands (e.g., less). The value is > meant to be interpreted by the shell. The order of preference is > the $GIT_PAGER environment variable, then core.pager configuration, > then $PAGER, and then finally less. > > This suggests that the ordering is GIT_PAGER > core.pager > PAGER > > default. OK, that means that my gut feeling was right, we do the right thing, and we do document it. But your original "documentation in git.1 and git-config.1, and the two are not coordinated to make it clear what happens in all cases." still stands. How can we improve the documentation to make the above paragraph easier to discover? Perhaps use the above wording to update git-config.1 that already mentions GIT_PAGER in the section for core.pager? The description over there is so incoherent that I needed to read it three times to see what points are mentioned. How about doing this? -- >8 -- config: rewrite core.pager documentation The text mentions core.pager and GIT_PAGER without giving the overall picture of precedences. Borrow a better description from the git-var(1) documentation. The use of the mechanism to allow system-wide, global and per-repository configuration files is not limited to this particular variable. Remove it to clarify the paragraph. Rewrite the part that explains how the environment variable LESS is set to Git's default value, and how to selectively customize it. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- Documentation/config.txt | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index ec57a15..7f9bc38 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -553,22 +553,18 @@ sequence.editor:: When not configured the default commit message editor is used instead. core.pager:: - The command that Git will use to paginate output. Can - be overridden with the `GIT_PAGER` environment - variable. Note that Git sets the `LESS` environment - variable to `FRSX` if it is unset when it runs the - pager. One can change these settings by setting the - `LESS` variable to some other value. Alternately, - these settings can be overridden on a project or - global basis by setting the `core.pager` option. - Setting `core.pager` has no effect on the `LESS` - environment variable behaviour above, so if you want - to override Git's default settings this way, you need - to be explicit. For example, to disable the S option - in a backward compatible manner, set `core.pager` - to `less -+S`. This will be passed to the shell by - Git, which will translate the final command to - `LESS=FRSX less -+S`. + Text viewer for use by Git commands (e.g., 'less'). The value + is meant to be interpreted by the shell. The order of preference + is the `$GIT_PAGER` environment variable, then `core.pager` + configuration, then `$PAGER`, and then the default chosen at + compile time (usually 'less'). ++ +When the `LESS` environment variable is unset, Git sets it to `FRSX` +(if `LESS` environment variable is set, Git does not change it at +all). If you want to override Git's default setting for `LESS`, you +can set `core.pager` to `less -+S`. This will be passed to the +shell by Git, which will translate the final command to `LESS=FRSX +less -+S`. core.whitespace:: A comma separated list of common whitespace problems to -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html