]> git.ipfire.org Git - thirdparty/git.git/blobdiff - remote-curl.c
Merge branch 'jc/add-i-use-builtin-experimental'
[thirdparty/git.git] / remote-curl.c
index 0c1833dcb68e15876af63868f2af104df36e0d39..32cc4a0c553b3e6f953be247bd593e07222dd5b5 100644 (file)
@@ -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);