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

promisor-remote.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed4ecead36f5a37ad65918c4b3fb489eaaa44e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef PROMISOR_REMOTE_H
#define PROMISOR_REMOTE_H

struct object_id;

/*
 * Promisor remote linked list
 * Its information come from remote.XXX config entries.
 */
struct promisor_remote {
	struct promisor_remote *next;
	const char name[FLEX_ARRAY];
};

extern struct promisor_remote *promisor_remote_find(const char *remote_name);
extern int has_promisor_remote(void);
extern int promisor_remote_get_direct(struct repository *repo,
				      const struct object_id *oids,
				      int oid_nr);

#endif /* PROMISOR_REMOTE_H */