aboutsummaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-11-28 00:29:21 +0100
committerJunio C Hamano <junkio@cox.net>2006-11-27 16:55:42 -0800
commit1d541c120b4de5c70e73f8a20e1d961324cc55fe (patch)
treebe9cadcd2f22c7ecb735ad8473dd8ba112f967e1 /git.c
parent86d11cf264c55d570484cbdfff073092c77a6342 (diff)
downloadgit-1d541c120b4de5c70e73f8a20e1d961324cc55fe.tar.gz
git-1d541c120b4de5c70e73f8a20e1d961324cc55fe.tar.xz
shortlog: use pager
On request of the kingpenguin, shortlog now uses the pager if output goes to a tty. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git.c')
-rw-r--r--git.c2
1 files changed, 1 insertions, 1 deletions
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 },