diff options
| author | Vicent Martà <tanoku@gmail.com> | 2011-07-05 04:31:37 -0700 |
|---|---|---|
| committer | Vicent Martà <tanoku@gmail.com> | 2011-07-05 04:31:37 -0700 |
| commit | f12aa9dc5ed04cfe92f1d536314eb03185f67f7d (patch) | |
| tree | b720325beef678f7d132280d8f2644277a4e7d86 /src/remote.h | |
| parent | 7d69f78897fc079a58059d9a84ab5928161d78cb (diff) | |
| parent | 0ac2726fdf945792028e59105d8630a91c5d3663 (diff) | |
| download | libgit2-f12aa9dc5ed04cfe92f1d536314eb03185f67f7d.tar.gz | |
Merge pull request #300 from carlosmn/gsoc2011/master
A bit of networking
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 |
