diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-05-01 15:24:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-01 15:24:01 -0700 |
commit | c259a1a927016fa5b80e3a7055031430cbdfddb8 (patch) | |
tree | 841a389391b80df690c30fb64792a068c49940fc /builtin | |
parent | b9347eb224d7b38f29893e75b6ca16a61647a4f2 (diff) | |
parent | b17dd3f9d6b1657b3fbfb40a863fc2dce5f54798 (diff) | |
download | git-c259a1a927016fa5b80e3a7055031430cbdfddb8.tar.gz git-c259a1a927016fa5b80e3a7055031430cbdfddb8.tar.xz |
Merge branch 'tr/remote-tighten-commandline-parsing'
* tr/remote-tighten-commandline-parsing:
remote: 'show' and 'prune' can take more than one remote
remote: check for superfluous arguments in 'git remote add'
remote: add a test for extra arguments, according to docs
Diffstat (limited to 'builtin')
-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 937484d7c..5e54d367b 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -178,7 +178,7 @@ static int add(int argc, const char **argv) argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage, 0); - if (argc < 2) + if (argc != 2) usage_with_options(builtin_remote_add_usage, options); if (mirror && master) |