diff options
author | Jonathan Tan <jonathantanmy@google.com> | 2018-07-16 20:44:01 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-16 23:51:12 +0200 |
commit | 42cc7485a2ec49ecc440c921d2eb0cae4da80549 (patch) | |
tree | 576a4ddf4327faf750dd9017fb2cf70c21ae8bda /fetch-negotiator.h | |
parent | fetch-pack: introduce negotiator API (diff) | |
download | git-42cc7485a2ec49ecc440c921d2eb0cae4da80549.tar.xz git-42cc7485a2ec49ecc440c921d2eb0cae4da80549.zip |
negotiator/skipping: skip commits during fetch
Introduce a new negotiation algorithm used during fetch that skips
commits in an effort to find common ancestors faster. The skips grow
similarly to the Fibonacci sequence as the commit walk proceeds further
away from the tips. The skips may cause unnecessary commits to be
included in the packfile, but the negotiation step typically ends more
quickly.
Usage of this algorithm is guarded behind the configuration flag
fetch.negotiationAlgorithm.
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'fetch-negotiator.h')
-rw-r--r-- | fetch-negotiator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetch-negotiator.h b/fetch-negotiator.h index b1290aa9c6..ddb44a22dc 100644 --- a/fetch-negotiator.h +++ b/fetch-negotiator.h @@ -52,6 +52,7 @@ struct fetch_negotiator { void *data; }; -void fetch_negotiator_init(struct fetch_negotiator *negotiator); +void fetch_negotiator_init(struct fetch_negotiator *negotiator, + const char *algorithm); #endif |