From fe7b5150cb20d883e8c9dd3ad5f1b85321d066ad Mon Sep 17 00:00:00 2001 From: Alexander Shopov Date: Fri, 16 Feb 2024 11:15:35 +0100 Subject: [PATCH] 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 --- builtin/remote.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5