diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-12-17 12:03:29 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-17 12:03:29 -0800 |
commit | 88cb2f96aca8ca8e454e8aa532e54c3c629dbb62 (patch) | |
tree | bf21d457e0719e11d70fc9c0d22452a79a80bccf /builtin/clone.c | |
parent | Merge branch 'cc/starts-n-ends-with' (diff) | |
parent | clone,fetch: catch non positive --depth option value (diff) | |
download | tgif-88cb2f96aca8ca8e454e8aa532e54c3c629dbb62.tar.xz |
Merge branch 'nd/transport-positive-depth-only'
"git fetch --depth=0" was a no-op, and was silently
ignored. Diagnose it as an error.
* nd/transport-positive-depth-only:
clone,fetch: catch non positive --depth option value
Diffstat (limited to 'builtin/clone.c')
-rw-r--r-- | builtin/clone.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index ec4d1cd2bb..f98f52980d 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -796,6 +796,10 @@ int cmd_clone(int argc, const char **argv, const char *prefix) if (option_local > 0 && !is_local) warning(_("--local is ignored")); + /* no need to be strict, transport_set_option() will validate it again */ + if (option_depth && atoi(option_depth) < 1) + die(_("depth %s is not a positive number"), option_depth); + if (argc == 2) dir = xstrdup(argv[1]); else |