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/fetch.c | |
parent | ad7044857660af7ffaaf8fbbccc77b817d1b938f (diff) | |
parent | 5594bcad21da70d2e9704cf96baa91b8d99dc27b (diff) | |
download | git-88cb2f96aca8ca8e454e8aa532e54c3c629dbb62.tar.gz git-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/fetch.c')
-rw-r--r-- | builtin/fetch.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index e3ac84a0d..1e7d617f4 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -1079,6 +1079,10 @@ int cmd_fetch(int argc, const char **argv, const char *prefix) } } + /* no need to be strict, transport_set_option() will validate it again */ + if (depth && atoi(depth) < 1) + die(_("depth %s is not a positive number"), depth); + if (recurse_submodules != RECURSE_SUBMODULES_OFF) { if (recurse_submodules_default) { int arg = parse_fetch_recurse_submodules_arg("--recurse-submodules-default", recurse_submodules_default); |