Message ID | 20190226215348.5119-1-jacob.e.keller@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | describe: bail of --contains --all is used with --exclude or --match | expand |
On Tue, Feb 26, 2019 at 4:54 PM Jacob Keller <jacob.e.keller@intel.com> wrote: > describe: bail of --contains --all is used with --exclude or --match s/of/if/ > Signed-off-by: Jacob Keller <jacob.keller@gmail.com> > --- > diff --git a/builtin/describe.c b/builtin/describe.c > @@ -589,6 +589,9 @@ int cmd_describe(int argc, const char **argv, const char *prefix) > for_each_string_list_item(item, &exclude_patterns) > argv_array_pushf(&args, "--exclude=refs/tags/%s", item->string); > + } else { > + if (patterns.nr || exclude_patterns.nr) > + die(_("--contains with --all does not support --match or --exclude")); > } Could be folded into an 'else if': } else if (patterns.nr || exclude_patterns.nr) { die(...); } but not worth a re-roll.
diff --git a/builtin/describe.c b/builtin/describe.c index 1409cedce2fb..1bf4b6e3d0ae 100644 --- a/builtin/describe.c +++ b/builtin/describe.c @@ -589,6 +589,9 @@ int cmd_describe(int argc, const char **argv, const char *prefix) argv_array_pushf(&args, "--refs=refs/tags/%s", item->string); for_each_string_list_item(item, &exclude_patterns) argv_array_pushf(&args, "--exclude=refs/tags/%s", item->string); + } else { + if (patterns.nr || exclude_patterns.nr) + die(_("--contains with --all does not support --match or --exclude")); } if (argc) argv_array_pushv(&args, argv);