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

remote.h « src - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5686a29ceb902e575988f134845e1547b1acb16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef INCLUDE_remote_h__
#define INCLUDE_remote_h__

#include "refspec.h"
#include "transport.h"
#include "repository.h"

struct git_remote {
	char *name;
	char *url;
	git_headarray refs;
	struct git_refspec fetch;
	struct git_refspec push;
	git_transport *transport;
	git_repository *repo;
};

#endif