]> git.ipfire.org Git - thirdparty/git.git/commit
multi-pack-index: simplify handling of unknown --options
authorSZEDER Gábor <szeder.dev@gmail.com>
Sun, 10 Jul 2022 15:16:45 +0000 (17:16 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 10 Jul 2022 21:53:48 +0000 (14:53 -0700)
commitcc74afb83f7bd57002ce791e66290b20120ff9f3
treebe9f09b703071b9f1d007075b0207fa2b9570cc5
parente4a4b31577c7419497ac30cebe30d755b97752c5
multi-pack-index: simplify handling of unknown --options

Although parse_options() can handle unknown --options just fine, none
of 'git multi-pack-index's subcommands rely on it, but do it on their
own: they invoke parse_options() with the PARSE_OPT_KEEP_UNKNOWN flag,
then check whether there are any unparsed arguments left, and print
usage and quit if necessary.

Drop that PARSE_OPT_KEEP_UNKNOWN flag to let parse_options() handle
unknown options instead, which has the additional benefit that it
prints not only the usage but an "error: unknown option `foo'" message
as well.

Do leave the unparsed arguments check to catch any unexpected
non-option arguments, though, e.g. 'git multi-pack-index write foo'.

Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/multi-pack-index.c