X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=remote-curl.c;h=32cc4a0c553b3e6f953be247bd593e07222dd5b5;hb=e96b271d185b59d93f7deab454a788c9d8dd0e50;hp=0c1833dcb68e15876af63868f2af104df36e0d39;hpb=18aff08e04502c565e9a0538df12d04f2ca8765c;p=thirdparty%2Fgit.git diff --git a/remote-curl.c b/remote-curl.c index 0c1833dcb6..32cc4a0c55 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -43,7 +43,6 @@ struct options { /* see documentation of corresponding flag in fetch-pack.h */ from_promisor : 1, - no_dependents : 1, atomic : 1, object_format : 1; const struct git_hash_algo *hash_algo; @@ -193,9 +192,6 @@ static int set_option(const char *name, const char *value) } else if (!strcmp(name, "from-promisor")) { options.from_promisor = 1; return 0; - } else if (!strcmp(name, "no-dependents")) { - options.no_dependents = 1; - return 0; } else if (!strcmp(name, "filter")) { options.filter = xstrdup(value); return 0; @@ -1178,8 +1174,6 @@ static int fetch_git(struct discovery *heads, strvec_push(&args, "--deepen-relative"); if (options.from_promisor) strvec_push(&args, "--from-promisor"); - if (options.no_dependents) - strvec_push(&args, "--no-dependents"); if (options.filter) strvec_pushf(&args, "--filter=%s", options.filter); strvec_push(&args, url.buf);