vendor/libgit2/src/remote.h in rugged-0.17.0.b6 vs vendor/libgit2/src/remote.h in rugged-0.17.0.b7
- old
+ new
@@ -11,10 +11,12 @@
#include "refspec.h"
#include "transport.h"
#include "repository.h"
+#define GIT_REMOTE_ORIGIN "origin"
+
struct git_remote {
char *name;
char *url;
char *pushurl;
git_vector refs;
@@ -22,10 +24,11 @@
struct git_refspec push;
git_transport *transport;
git_repository *repo;
git_remote_callbacks callbacks;
unsigned int need_pack:1,
- check_cert;
+ download_tags:2, /* There are four possible values */
+ check_cert:1;
};
const char* git_remote__urlfordirection(struct git_remote *remote, int direction);
#endif