aboutsummaryrefslogtreecommitdiff
path: root/remote.h
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