revision.c: introduce --min-parents and --max-parents options
Introduce --min-parents and --max-parents options which limit the revisions to those commits which have at least (or at most) that many commits, where negative arguments for --max-parents= denote infinity (i.e. no upper limit). In particular: --max-parents=1 is the same as --no-merges; --min-parents=2 is the same as --merges; --max-parents=0 shows only roots; and --min-parents=3 shows only octopus merges Using --min-parents=n and --max-parents=m with n>m gives you what you ask for (i.e. nothing) for obvious reasons, just like when you give --merges (show only merge commits) and --no-merges (show only non-merge commits) at the same time. Also, introduce --no-min-parents and --no-max-parents to do the obvious thing for convenience. We compute the number of parents only when we limit by that, so there is no performance impact when there are no limiters. Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
8ee5059488
commit
ad5aeeded3
@ -16,6 +16,10 @@ static const char rev_list_usage[] =
|
||||
" --min-age=<epoch>\n"
|
||||
" --sparse\n"
|
||||
" --no-merges\n"
|
||||
" --min-parents=<n>\n"
|
||||
" --no-min-parents\n"
|
||||
" --max-parents=<n>\n"
|
||||
" --no-max-parents\n"
|
||||
" --remove-empty\n"
|
||||
" --all\n"
|
||||
" --branches\n"
|
||||
|
Reference in New Issue
Block a user