aboutsummaryrefslogtreecommitdiff
path: root/builtin/remote.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-11-06 21:12:59 -0800
committerJunio C Hamano <gitster@pobox.com>2011-11-06 21:15:30 -0800
commit656cdf0c9ebe2899ef79020285c9a6243dc84d97 (patch)
treeb4befb3a920920f40e39c78a63a4bf1b7e96ea00 /builtin/remote.c
parent3d8b69495fd1132d5af6d7f46425cca97a937d97 (diff)
downloadgit-656cdf0c9ebe2899ef79020285c9a6243dc84d97.tar.gz
git-656cdf0c9ebe2899ef79020285c9a6243dc84d97.tar.xz
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 'builtin/remote.c')
-rw-r--r--builtin/remote.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/remote.c b/builtin/remote.c
index c4d17b52b..06741ecde 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;