aboutsummaryrefslogtreecommitdiffstats
path: root/builtin
diff options
context:
space:
mode:
authorAlexander Shopov <ash@kambanaria.org>2024-02-16 11:15:35 +0100
committerJunio C Hamano <gitster@pobox.com>2024-03-05 14:11:56 -0800
commitfe7b5150cb20d883e8c9dd3ad5f1b85321d066ad (patch)
tree427c8b16b04b33566fac4743b3bd44595d46dc5d /builtin
parent3a12749b50eb012b2828856fdf864fab67269cfd (diff)
downloadgit-fe7b5150cb20d883e8c9dd3ad5f1b85321d066ad.tar.gz
builtin/remote.c: trivial fix of error message
Mark --mirror as option rather than command Signed-off-by: Alexander Shopov <ash@kambanaria.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/remote.c2
1 files changed, 1 insertions, 1 deletions
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;
}