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>
This commit is contained in:
Alexander Shopov 2024-02-16 11:15:35 +01:00 committed by Junio C Hamano
parent 3a12749b50
commit fe7b5150cb
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}