repo-settings: rename the traditional default fetch.negotiationAlgorithm
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>
This commit is contained in:

committed by
Junio C Hamano

parent
a9a136c232
commit
714edc620c
@ -18,7 +18,7 @@ void fetch_negotiator_init(struct repository *r,
|
||||
noop_negotiator_init(negotiator);
|
||||
return;
|
||||
|
||||
case FETCH_NEGOTIATION_DEFAULT:
|
||||
case FETCH_NEGOTIATION_CONSECUTIVE:
|
||||
default_negotiator_init(negotiator);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user