diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-11-07 06:12:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-07 06:15:30 +0100 |
commit | 656cdf0c9ebe2899ef79020285c9a6243dc84d97 (patch) | |
tree | b4befb3a920920f40e39c78a63a4bf1b7e96ea00 /builtin/remote.c | |
parent | Add git remote set-branches (diff) | |
download | git-656cdf0c9ebe2899ef79020285c9a6243dc84d97.tar.xz git-656cdf0c9ebe2899ef79020285c9a6243dc84d97.zip |
remote: fix set-branches usage
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 '')
-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; |