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-07-31 00:29:00 +0400
committerVicent Marti <tanoku@gmail.com>2011-08-18 04:34:07 +0400
commitb4c9063040efdc2bbb2d32704234e0d9c2159b4e (patch)
tree60bbbf125614305760d7068b5ca90953bfdc1a25 /src/remote.h
parent0e20ba606655d25aa3fdeb9948a55e40107ac269 (diff)
Implement sending haves
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/remote.h b/src/remote.h
index e0c3fbf8d..129671fd2 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -1,9 +1,9 @@
#ifndef INCLUDE_remote_h__
#define INCLUDE_remote_h__
-#include "remote.h"
#include "refspec.h"
#include "transport.h"
+#include "repository.h"
struct git_remote {
char *name;
@@ -13,6 +13,4 @@ struct git_remote {
git_transport *transport;
};
-int git_remote_send_wants(git_remote *remote, git_headarray *list);
-
#endif