1
0
mirror of https://github.com/git/git.git synced 2025-03-22 21:56:31 +00:00

remote: fix remote set-url usage

Bad copy-paste.

Otherwise the help text for "git remote set-url --help" would show help
for "git remote update" subcommand.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Felipe Contreras 2011-11-07 05:36:57 +02:00 committed by Junio C Hamano
parent 433f2be139
commit c49904efb5

View File

@ -1286,7 +1286,7 @@ static int set_url(int argc, const char **argv)
"delete URLs"),
OPT_END()
};
argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage,
argc = parse_options(argc, argv, NULL, options, builtin_remote_seturl_usage,
PARSE_OPT_KEEP_ARGV0);
if (add_mode && delete_mode)