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 /t/t5606-clone-options.sh | |
parent | d7d30badbf1ece9c944e41bac4d8aef1117e8b7f (diff) | |
download | git-246cac85055f513626159e8cd20b741eaf5f9f97.tar.gz |
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 't/t5606-clone-options.sh')
-rwxr-xr-x | t/t5606-clone-options.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5606-clone-options.sh b/t/t5606-clone-options.sh index 3af3577af0..8f676d6b0c 100755 --- a/t/t5606-clone-options.sh +++ b/t/t5606-clone-options.sh @@ -46,7 +46,7 @@ test_expect_success 'disallows --bare with --origin' ' test_must_fail git clone -o foo --bare parent clone-bare-o 2>err && test_debug "cat err" && - test_i18ngrep -e "--bare and --origin foo options are incompatible" err + test_i18ngrep -e "options .--bare. and .--origin foo. cannot be used together" err ' |