diff options
author | Robert Coup <robert@coup.net.nz> | 2022-03-28 14:02:05 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-28 10:25:52 -0700 |
commit | 1836836593e90b515269b564b384dcf091a4493d (patch) | |
tree | a3e5faf9decd687c7fa4cf6b29b9d62adde054ab | |
parent | The seventh batch (diff) | |
download | tgif-1836836593e90b515269b564b384dcf091a4493d.tar.xz |
fetch-negotiator: add specific noop initializer
Add a specific initializer for the noop fetch negotiator. This is
introduced to support allowing partial clones to skip commit negotiation
when performing a "refetch".
Signed-off-by: Robert Coup <robert@coup.net.nz>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | fetch-negotiator.c | 5 | ||||
-rw-r--r-- | fetch-negotiator.h | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/fetch-negotiator.c b/fetch-negotiator.c index 874797d767..be383367f5 100644 --- a/fetch-negotiator.c +++ b/fetch-negotiator.c @@ -23,3 +23,8 @@ void fetch_negotiator_init(struct repository *r, return; } } + +void fetch_negotiator_init_noop(struct fetch_negotiator *negotiator) +{ + noop_negotiator_init(negotiator); +} diff --git a/fetch-negotiator.h b/fetch-negotiator.h index ea78868504..e348905a1f 100644 --- a/fetch-negotiator.h +++ b/fetch-negotiator.h @@ -53,7 +53,15 @@ struct fetch_negotiator { void *data; }; +/* + * Initialize a negotiator based on the repository settings. + */ void fetch_negotiator_init(struct repository *r, struct fetch_negotiator *negotiator); +/* + * Initialize a noop negotiator. + */ +void fetch_negotiator_init_noop(struct fetch_negotiator *negotiator); + #endif |