diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2022-01-05 20:02:24 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-01-05 13:31:00 -0800 |
commit | 246cac85055f513626159e8cd20b741eaf5f9f97 (patch) | |
tree | e6d7e00c0918636199eb430e98ecc62e8980ded7 /builtin/cat-file.c | |
parent | i18n: ref-filter: factorize "%(foo) atom used without %(bar) atom" (diff) | |
download | tgif-246cac85055f513626159e8cd20b741eaf5f9f97.tar.xz |
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>
Diffstat (limited to 'builtin/cat-file.c')
-rw-r--r-- | builtin/cat-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/cat-file.c b/builtin/cat-file.c index 86fc03242b..d94050e6c1 100644 --- a/builtin/cat-file.c +++ b/builtin/cat-file.c @@ -729,7 +729,7 @@ int cmd_cat_file(int argc, const char **argv, const char *prefix) } if (force_path && batch.enabled) { - error("--path=<path> incompatible with --batch"); + error("options '--path=<path>' and '--batch' cannot be used together"); usage_with_options(cat_file_usage, options); } |