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-08-05 00:42:58 +0400
committerVicent Marti <tanoku@gmail.com>2011-08-18 04:34:08 +0400
commit48a65a071d9d6689a0ebb7891a20e8dab5fd3cdd (patch)
tree872610c01b47d1b47029bf465e7efb4658f45306 /src/remote.h
parent9cf0f287bb0ece488c9e0a169b3f806a4a9701eb (diff)
Only wait for pack if we need it
Provide the git_remote_download function to instruct the library to downlad the packfile and let the user know the temporary location. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/remote.h b/src/remote.h
index f5686a29c..21313acd4 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -13,6 +13,7 @@ struct git_remote {
struct git_refspec push;
git_transport *transport;
git_repository *repo;
+ int need_pack:1;
};
#endif