diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-11-28 00:29:21 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-27 16:55:42 -0800 |
commit | 1d541c120b4de5c70e73f8a20e1d961324cc55fe (patch) | |
tree | be9cadcd2f22c7ecb735ad8473dd8ba112f967e1 /git.c | |
parent | 86d11cf264c55d570484cbdfff073092c77a6342 (diff) | |
download | git-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 }, |