Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fetch-negotiator.c - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2675d120feee21dd9f618ce2f6b8ff1e3a3330ea (plain)
1
2
3
4
5
6
7
8
#include "git-compat-util.h"
#include "fetch-negotiator.h"
#include "negotiator/default.h"

void fetch_negotiator_init(struct fetch_negotiator *negotiator)
{
	default_negotiator_init(negotiator);
}