From: René Scharfe Date: Tue, 28 Nov 2006 21:49:17 +0000 (+0100) Subject: shortlog: remove range check X-Git-Tag: v1.5.0-rc0~191 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c3e43938839752b48ff3a36862ae59f1cd1e630d;p=git.git shortlog: remove range check Don't force the user to specify more than one revision parameter, thus making git-shortlog behave more like git-log. 'git-shortlog master' will now produce the expected results; the other end of the range simply is the (oldest) root commit. Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- diff --git a/builtin-shortlog.c b/builtin-shortlog.c index b5b13dee3..f1124e261 100644 --- a/builtin-shortlog.c +++ b/builtin-shortlog.c @@ -298,9 +298,7 @@ int cmd_shortlog(int argc, const char **argv, const char *prefix) if (!access(".mailmap", R_OK)) read_mailmap(".mailmap"); - if (rev.pending.nr == 1) - die ("Need a range!"); - else if (rev.pending.nr == 0) + if (rev.pending.nr == 0) read_from_stdin(&list); else get_from_rev(&rev, &list);