diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-11-06 21:12:59 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-06 21:15:30 -0800 |
commit | 656cdf0c9ebe2899ef79020285c9a6243dc84d97 (patch) | |
tree | b4befb3a920920f40e39c78a63a4bf1b7e96ea00 /builtin/remote.c | |
parent | 3d8b69495fd1132d5af6d7f46425cca97a937d97 (diff) | |
download | git-656cdf0c9ebe2899ef79020285c9a6243dc84d97.tar.gz |
remote: fix set-branches usagejc/remote-setbranches-usage-fix
Bad copy-paste.
Otherwise "git remote set-branches" without necessary argument
will result in an error message and help for set-url subcommand.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/remote.c')
-rw-r--r-- | builtin/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/remote.c b/builtin/remote.c index c4d17b52bc..06741ecde4 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -1336,7 +1336,7 @@ static int set_branches(int argc, const char **argv) builtin_remote_setbranches_usage, 0); if (argc == 0) { error("no remote specified"); - usage_with_options(builtin_remote_seturl_usage, options); + usage_with_options(builtin_remote_setbranches_usage, options); } argv[argc] = NULL; |