mirror of
https://github.com/git/git.git
synced 2026-01-11 13:23:12 +09:00
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>
36 lines
900 B
C
36 lines
900 B
C
#ifndef PROMISOR_REMOTE_H
|
|
#define PROMISOR_REMOTE_H
|
|
|
|
#include "repository.h"
|
|
|
|
struct object_id;
|
|
|
|
/*
|
|
* Promisor remote linked list
|
|
*
|
|
* Information in its fields come from remote.XXX config entries or
|
|
* from extensions.partialclone.
|
|
*/
|
|
struct promisor_remote {
|
|
struct promisor_remote *next;
|
|
const char *partial_clone_filter;
|
|
const char name[FLEX_ARRAY];
|
|
};
|
|
|
|
void promisor_remote_reinit(void);
|
|
struct promisor_remote *promisor_remote_find(const char *remote_name);
|
|
int has_promisor_remote(void);
|
|
|
|
/*
|
|
* Fetches all requested objects from all promisor remotes, trying them one at
|
|
* a time until all objects are fetched. Returns 0 upon success, and non-zero
|
|
* otherwise.
|
|
*
|
|
* If oid_nr is 0, this function returns 0 (success) immediately.
|
|
*/
|
|
int promisor_remote_get_direct(struct repository *repo,
|
|
const struct object_id *oids,
|
|
int oid_nr);
|
|
|
|
#endif /* PROMISOR_REMOTE_H */
|