1 #ifndef PROMISOR_REMOTE_H
2 #define PROMISOR_REMOTE_H
4 #include "repository.h"
9 * Promisor remote linked list
11 * Information in its fields come from remote.XXX config entries or
12 * from extensions.partialclone.
14 struct promisor_remote
{
15 struct promisor_remote
*next
;
16 const char *partial_clone_filter
;
17 const char name
[FLEX_ARRAY
];
20 void repo_promisor_remote_reinit(struct repository
*r
);
21 void promisor_remote_clear(struct promisor_remote_config
*config
);
22 struct promisor_remote
*repo_promisor_remote_find(struct repository
*r
, const char *remote_name
);
23 int repo_has_promisor_remote(struct repository
*r
);
26 * Fetches all requested objects from all promisor remotes, trying them one at
27 * a time until all objects are fetched.
29 * If oid_nr is 0, this function returns immediately.
31 void promisor_remote_get_direct(struct repository
*repo
,
32 const struct object_id
*oids
,
35 #endif /* PROMISOR_REMOTE_H */