aboutsummaryrefslogtreecommitdiffstats
path: root/promisor-remote.h
diff options
context:
space:
mode:
authorJonathan Tan <jonathantanmy@google.com>2021-06-17 10:13:22 -0700
committerJunio C Hamano <gitster@pobox.com>2021-06-28 09:57:41 -0700
commitebaf3bcf1aecdc31062ede80fca3a7c98202d8bb (patch)
tree00753eeb98e5e9e57d53cc031ec3c3846aa38de1 /promisor-remote.h
parentebf3c04b262aa27fbb97f8a0156c2347fecafafb (diff)
downloadgit-ebaf3bcf1aecdc31062ede80fca3a7c98202d8bb.tar.gz
repository: move global r_f_p_c to repo struct
Move repository_format_partial_clone, which is currently a global variable, into struct repository. (Full support for per-repository partial clone config will be done in a subsequent commit - this is split into its own commit because of the extent of the changes needed.) The new repo-specific variable cannot be set in check_repository_format_gently() (as is currently), because that function does not know which repo it is operating on (or even whether the value is important); therefore this responsibility is delegated to the outermost caller that knows. Of all the outermost callers that know (found by looking at all functions that call clear_repository_format()), I looked at those that either read from the main Git directory or write into a struct repository. These callers have been modified accordingly (write to the_repository in the former case and write to the given struct repository in the latter case). Signed-off-by: Jonathan Tan <jonathantanmy@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com> Reviewed-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'promisor-remote.h')
-rw-r--r--promisor-remote.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/promisor-remote.h b/promisor-remote.h
index c7a14063c5..687210ab87 100644
--- a/promisor-remote.h
+++ b/promisor-remote.h
@@ -32,10 +32,4 @@ int promisor_remote_get_direct(struct repository *repo,
const struct object_id *oids,
int oid_nr);
-/*
- * This should be used only once from setup.c to set the value we got
- * from the extensions.partialclone config option.
- */
-void set_repository_format_partial_clone(char *partial_clone);
-
#endif /* PROMISOR_REMOTE_H */