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

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

struct remote {
	const char *name;

	const char **uri;
	int uri_nr;

	const char **push_refspec;
	int push_refspec_nr;

	const char *receivepack;
};

struct remote *remote_get(const char *name);

#endif