diff options
| author | Junio C Hamano <gitster@pobox.com> | 2013-05-03 15:12:38 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2013-05-03 15:12:38 -0700 |
| commit | 571cdfd4e0a4cc24e215a5d5f0cb24292a9d7929 (patch) | |
| tree | 72084fb42ecc467bdff4ba4878f312d94411be23 /builtin | |
| parent | Merge branch 'jn/glossary-revision' into maint (diff) | |
| parent | remote: 'show' and 'prune' can take more than one remote (diff) | |
| download | git-571cdfd4e0a4cc24e215a5d5f0cb24292a9d7929.tar.gz git-571cdfd4e0a4cc24e215a5d5f0cb24292a9d7929.zip | |
Merge branch 'tr/remote-tighten-commandline-parsing' into maint
* 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 937484d7c7..5e54d367b8 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) |
