diff options
author | Junio C Hamano <junkio@cox.net> | 2006-06-06 16:58:40 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-09 03:27:03 -0700 |
commit | 85fb65ed6e41e93760a91b33b512d3d9dc67ac66 (patch) | |
tree | e8b00ceee2a8b5880d192609ac80ebfbbeeb0a6d /git.c | |
parent | cfc01c038709e4cdbf506d29937cac2bc1b76d39 (diff) | |
download | git-85fb65ed6e41e93760a91b33b512d3d9dc67ac66.tar.gz git-85fb65ed6e41e93760a91b33b512d3d9dc67ac66.tar.xz |
"git -p cmd" to page anywhere
This allows you to say:
git -p diff v2.6.16-rc5..
and the command pipes the output of any git command to your pager.
[jc: this resurrects a month old RFC patch with improvement
suggested by Linus to call it --paginate instead of --less.]
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -251,6 +251,11 @@ int main(int argc, const char **argv, char **envp) cmd = *++argv; argc--; + if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) { + setup_pager(); + continue; + } + if (strncmp(cmd, "--", 2)) break; |