i18n: turn even more messages into "cannot be used together" ones
Even if some of these messages are not subject to gettext i18n, this helps bring a single style of message for a given error type. Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Reviewed-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
d7d30badbf
commit
246cac8505
@ -900,8 +900,8 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
|
||||
|
||||
if (option_bare) {
|
||||
if (option_origin)
|
||||
die(_("--bare and --origin %s options are incompatible."),
|
||||
option_origin);
|
||||
die(_("options '%s' and '%s %s' cannot be used together"),
|
||||
"--bare", "--origin", option_origin);
|
||||
if (real_git_dir)
|
||||
die(_("options '%s' and '%s' cannot be used together"), "--bare", "--separate-git-dir");
|
||||
option_no_checkout = 1;
|
||||
|
Reference in New Issue
Block a user