From: Johannes Schindelin Date: Mon, 27 Nov 2006 23:29:21 +0000 (+0100) Subject: shortlog: use pager X-Git-Tag: v1.5.0-rc0~195 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1d541c120b4de5c70e73f8a20e1d961324cc55fe;p=git.git shortlog: use pager On request of the kingpenguin, shortlog now uses the pager if output goes to a tty. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/git.c b/git.c index f97de602d..357330e02 100644 --- a/git.c +++ b/git.c @@ -260,7 +260,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) { "rev-parse", cmd_rev_parse, RUN_SETUP }, { "rm", cmd_rm, RUN_SETUP }, { "runstatus", cmd_runstatus, RUN_SETUP }, - { "shortlog", cmd_shortlog, RUN_SETUP }, + { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER }, { "show-branch", cmd_show_branch, RUN_SETUP }, { "show", cmd_show, RUN_SETUP | USE_PAGER }, { "stripspace", cmd_stripspace },