Skip to content

Commit 7bdf092

Browse files
chriscoolgitster
authored andcommitted
promisor-remote: use repository_format_partial_clone
A remote specified using the extensions.partialClone config option should be considered a promisor remote too. For simplicity and to make things predictable, this promisor remote should be either always the last one we try to get objects from, or the first one. So it should always be either at the end of the promisor remote list, or at its start. We decided to make it the last one we try, because it is likely that someone using many promisor remotes is doing so because the other promisor remotes are better for some reason (maybe they are closer or faster for some kind of objects) than the origin, and the origin is likely to be the remote specified by extensions.partialClone. This justification is not very strong, but one choice had to be made, and anyway the long term plan should be to make the order somehow fully configurable. Signed-off-by: Christian Couder <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d03068d commit 7bdf092

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

promisor-remote.c

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,18 @@ static struct promisor_remote *promisor_remote_lookup(const char *remote_name,
4040
return NULL;
4141
}
4242

43+
static void promisor_remote_move_to_tail(struct promisor_remote *r,
44+
struct promisor_remote *previous)
45+
{
46+
if (previous)
47+
previous->next = r->next;
48+
else
49+
promisors = r->next ? r->next : r;
50+
r->next = NULL;
51+
*promisors_tail = r;
52+
promisors_tail = &r->next;
53+
}
54+
4355
static int promisor_remote_config(const char *var, const char *value, void *data)
4456
{
4557
const char *name;
@@ -76,6 +88,17 @@ static void promisor_remote_init(void)
7688
initialized = 1;
7789

7890
git_config(promisor_remote_config, NULL);
91+
92+
if (repository_format_partial_clone) {
93+
struct promisor_remote *o, *previous;
94+
95+
o = promisor_remote_lookup(repository_format_partial_clone,
96+
&previous);
97+
if (o)
98+
promisor_remote_move_to_tail(o, previous);
99+
else
100+
promisor_remote_new(repository_format_partial_clone);
101+
}
79102
}
80103

81104
static void promisor_remote_clear(void)

0 commit comments

Comments
 (0)