Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
clone: detect extra arguments
author
Jonathan Nieder
<jrnieder@gmail.com>
Thu, 29 Oct 2009 08:10:30 +0000
(
03:10
-0500)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 30 Oct 2009 22:18:11 +0000
(15:18 -0700)
If git clone is given more than two non-option arguments, it
silently throws away all but the first one. Complain instead.
Discovered by comparing the new builtin clone to the old
git-clone.sh.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-clone.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
ebc9d42
)
diff --git
a/builtin-clone.c
b/builtin-clone.c
index 0a4f6124f57eedd16e99d3f70c4385e760092047..caf3025031d83dc860b22c7798dd5f40b6b89ed2 100644
(file)
--- a/
builtin-clone.c
+++ b/
builtin-clone.c
@@
-379,8
+379,13
@@
int cmd_clone(int argc, const char **argv, const char *prefix)
argc = parse_options(argc, argv, prefix, builtin_clone_options,
builtin_clone_usage, 0);
+ if (argc > 2)
+ usage_msg_opt("Too many arguments.",
+ builtin_clone_usage, builtin_clone_options);
+
if (argc == 0)
- die("You must specify a repository to clone.");
+ usage_msg_opt("You must specify a repository to clone.",
+ builtin_clone_usage, builtin_clone_options);
if (option_mirror)
option_bare = 1;