]> git.ipfire.org Git - thirdparty/git.git/commit - setup.c
repository: move global r_f_p_c to repo struct
authorJonathan Tan <jonathantanmy@google.com>
Thu, 17 Jun 2021 17:13:22 +0000 (10:13 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Jun 2021 16:57:41 +0000 (09:57 -0700)
commitebaf3bcf1aecdc31062ede80fca3a7c98202d8bb
tree00753eeb98e5e9e57d53cc031ec3c3846aa38de1
parentebf3c04b262aa27fbb97f8a0156c2347fecafafb
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>
promisor-remote.c
promisor-remote.h
repository.c
repository.h
setup.c