mirror of
https://github.com/git/git.git
synced 2024-11-27 20:14:30 +08:00
notes, remote: show unknown subcommands between `'
Update the "unknown subcommand" error message in 'git notes' and 'git remote' to wrap the offending argument between `', to make it consistent with the "unknown switch/option/subcommand" error messages in parse-options. Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
1c7c25aef1
commit
dd834d75ca
@ -1017,7 +1017,7 @@ int cmd_notes(int argc, const char **argv, const char *prefix)
|
||||
PARSE_OPT_SUBCOMMAND_OPTIONAL);
|
||||
if (!fn) {
|
||||
if (argc) {
|
||||
error(_("unknown subcommand: %s"), argv[0]);
|
||||
error(_("unknown subcommand: `%s'"), argv[0]);
|
||||
usage_with_options(git_notes_usage, options);
|
||||
}
|
||||
fn = list;
|
||||
|
@ -1769,7 +1769,7 @@ int cmd_remote(int argc, const char **argv, const char *prefix)
|
||||
return !!fn(argc, argv, prefix);
|
||||
} else {
|
||||
if (argc) {
|
||||
error(_("unknown subcommand: %s"), argv[0]);
|
||||
error(_("unknown subcommand: `%s'"), argv[0]);
|
||||
usage_with_options(builtin_remote_usage, options);
|
||||
}
|
||||
return !!show_all();
|
||||
|
Loading…
Reference in New Issue
Block a user