rev-list: allow -<n> as shorthand for --max-count=<n>
This builds on top of the previous one. Traditionally, head(1) and tail(1) allow their line limits to be parsed this way. Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
3af06987eb
commit
8233340ce6
@ -53,6 +53,10 @@ static int is_rev_argument(const char *arg)
|
||||
};
|
||||
const char **p = rev_args;
|
||||
|
||||
/* accept -<digit>, like traditional "head" */
|
||||
if ((*arg == '-') && isdigit(arg[1]))
|
||||
return 1;
|
||||
|
||||
for (;;) {
|
||||
const char *str = *p++;
|
||||
int len;
|
||||
|
Reference in New Issue
Block a user