From: Alexander Shopov Date: Fri, 16 Feb 2024 10:15:35 +0000 (+0100) Subject: builtin/remote.c: trivial fix of error message X-Git-Tag: v2.45.0-rc0~106^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe7b5150cb20d883e8c9dd3ad5f1b85321d066ad;p=thirdparty%2Fgit.git builtin/remote.c: trivial fix of error message Mark --mirror as option rather than command Signed-off-by: Alexander Shopov Signed-off-by: Junio C Hamano --- diff --git a/builtin/remote.c b/builtin/remote.c index d91bbe728d..8412d12fa5 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -150,7 +150,7 @@ static int parse_mirror_opt(const struct option *opt, const char *arg, int not) else if (!strcmp(arg, "push")) *mirror = MIRROR_PUSH; else - return error(_("unknown mirror argument: %s"), arg); + return error(_("unknown --mirror argument: %s"), arg); return 0; }