Merge branch 'rs/i18n-cannot-be-used-together' into maint-2.43
Clean-up code that handles combinations of incompatible options. * rs/i18n-cannot-be-used-together: i18n: factorize even more 'incompatible options' messages
This commit is contained in:
@ -967,7 +967,9 @@ int cmd_clone(int argc, const char **argv, const char *prefix)
|
||||
}
|
||||
|
||||
if (bundle_uri && deepen)
|
||||
die(_("--bundle-uri is incompatible with --depth, --shallow-since, and --shallow-exclude"));
|
||||
die(_("options '%s' and '%s' cannot be used together"),
|
||||
"--bundle-uri",
|
||||
"--depth/--shallow-since/--shallow-exclude");
|
||||
|
||||
repo_name = argv[0];
|
||||
|
||||
|
Reference in New Issue
Block a user