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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2011-06-17 20:13:14 +0400
committerCarlos Martín Nieto <carlos@cmartin.tk>2011-06-26 20:18:10 +0400
commit9c82357be74bc5404038ec3c16706b1805843556 (patch)
tree6ac361b40e1629136527c4da0427bc1cf213d00d /src/remote.h
parent0b10c9ea6ef5d85d862edd044d96561c4fd16e9b (diff)
Add a remotes API
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h
new file mode 100644
index 000000000..afd2d1bb9
--- /dev/null
+++ b/src/remote.h
@@ -0,0 +1,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