Am 02.01.22 um 18:15 schrieb Jean-Noël Avila via GitGitGadget: > diff --git a/builtin/worktree.c b/builtin/worktree.c > index 9a520485769..27b60732a22 100644 > --- a/builtin/worktree.c > +++ b/builtin/worktree.c > @@ -503,7 +503,7 @@ static int add(int ac, const char **av, const char *prefix) > opts.checkout = 1; > ac = parse_options(ac, av, prefix, options, worktree_usage, 0); > if (!!opts.detach + !!new_branch + !!new_branch_force > 1) > - die(_("-b, -B, and --detach are mutually exclusive")); > + die(_("options '%s', '%s', and '%s' cannot be used together"),"-b", "-B", "--detach"); As the range-diff in the coverletter shows, you fixed the missing blank after the comma in a lot of cases. This one slipped through. Not worth a re-roll on its own, IMO. -- Hannes