From 3af06987eb3c376e2f1cc6dfa9c9c510b9e228cf Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 29 Jan 2006 16:26:40 -0800 Subject: rev-list: allow -n as shorthand for --max-count= Both -n and -n are supported. POSIX versions of head(1) and tail(1) allow their line limits to be parsed this way. I find --max-count to be a commonly used option, and also similar in spirit to head/tail, so I decided to make life easier on my worn out (and lazy :) fingers with this patch. Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- rev-list.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'rev-list.c') diff --git a/rev-list.c b/rev-list.c index 0b142c1a6f..4565755217 100644 --- a/rev-list.c +++ b/rev-list.c @@ -749,6 +749,16 @@ int main(int argc, const char **argv) struct commit *commit; unsigned char sha1[20]; + if (!strcmp(arg, "-n")) { + if (++i >= argc) + die("-n requires an argument"); + max_count = atoi(argv[i]); + continue; + } + if (!strncmp(arg,"-n",2)) { + max_count = atoi(arg + 2); + continue; + } if (!strncmp(arg, "--max-count=", 12)) { max_count = atoi(arg + 12); continue; -- cgit v1.2.1