blob: afd2d1bb9bebe04ce642d77863b2584ae21602de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef INCLUDE_remote_h__
#define INCLUDE_remote_h__
#include "remote.h"
#include "refspec.h"
struct git_remote {
char *name;
char *url;
struct git_refspec fetch;
struct git_refspec push;
};
#endif
|