diff options
Diffstat (limited to 'src/remote.h')
| -rw-r--r-- | src/remote.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h new file mode 100644 index 000000000..fdd6cd569 --- /dev/null +++ b/src/remote.h @@ -0,0 +1,16 @@ +#ifndef INCLUDE_remote_h__ +#define INCLUDE_remote_h__ + +#include "remote.h" +#include "refspec.h" +#include "transport.h" + +struct git_remote { + char *name; + char *url; + struct git_refspec fetch; + struct git_refspec push; + git_transport *transport; +}; + +#endif |
