mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
714edc620c
Give the traditional default fetch.negotiationAlgorithm the name 'consecutive'. Also allow a choice of 'default' to have Git decide between the choices (currently, picking 'skipping' if feature.experimental is true and 'consecutive' otherwise). Update the documentation accordingly. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
25 lines
603 B
C
25 lines
603 B
C
#include "git-compat-util.h"
|
|
#include "fetch-negotiator.h"
|
|
#include "negotiator/default.h"
|
|
#include "negotiator/skipping.h"
|
|
#include "negotiator/noop.h"
|
|
#include "repository.h"
|
|
|
|
void fetch_negotiator_init(struct repository *r,
|
|
struct fetch_negotiator *negotiator)
|
|
{
|
|
prepare_repo_settings(r);
|
|
switch(r->settings.fetch_negotiation_algorithm) {
|
|
case FETCH_NEGOTIATION_SKIPPING:
|
|
skipping_negotiator_init(negotiator);
|
|
return;
|
|
|
|
case FETCH_NEGOTIATION_NOOP:
|
|
noop_negotiator_init(negotiator);
|
|
return;
|
|
|
|
case FETCH_NEGOTIATION_CONSECUTIVE:
|
|
default_negotiator_init(negotiator);
|
|
return;
|
|
}
|
|
}
|