diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-01 09:04:38 -0800 |
commit | fce9e836d395fb315bb8b77619868098a6cb02eb (patch) | |
tree | 08f7d5b4eb0c0cf663a5863ff4b5552b8d225602 /builtin/fetch.c | |
parent | Merge branch 'jk/optim-in-pack-idx-conversion' (diff) | |
parent | promisor-remote: remove fetch_if_missing=0 (diff) | |
download | tgif-fce9e836d395fb315bb8b77619868098a6cb02eb.tar.xz |
Merge branch 'jt/fetch-remove-lazy-fetch-plugging'
"git fetch" codepath had a big "do not lazily fetch missing objects
when I ask if something exists" switch. This has been corrected by
marking the "does this thing exist?" calls with "if not please do not
lazily fetch it" flag.
* jt/fetch-remove-lazy-fetch-plugging:
promisor-remote: remove fetch_if_missing=0
clone: remove fetch_if_missing=0
fetch: remove fetch_if_missing=0
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r-- | builtin/fetch.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index 256a6a61ab..46ce7c2710 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -1077,7 +1077,8 @@ static int check_exist_and_connected(struct ref *ref_map) * we need all direct targets to exist. */ for (r = rm; r; r = r->next) { - if (!has_object_file(&r->old_oid)) + if (!has_object_file_with_flags(&r->old_oid, + OBJECT_INFO_SKIP_FETCH_OBJECT)) return -1; } @@ -1826,8 +1827,6 @@ int cmd_fetch(int argc, const char **argv, const char *prefix) } } - fetch_if_missing = 0; - if (remote) { if (filter_options.choice || has_promisor_remote()) fetch_one_setup_partial(remote); |