Make fetch-pack a builtin with an internal API
[git/dscho.git] / fetch-pack.h
blobe06bf5b5c49e24e096ef322cfe3714ad0627113a
1 #ifndef FETCH_PACK_H
2 #define FETCH_PACK_H
4 struct fetch_pack_args
6 const char *uploadpack;
7 int quiet;
8 int keep_pack;
9 int unpacklimit;
10 int use_thin_pack;
11 int fetch_all;
12 int verbose;
13 int depth;
14 int no_progress;
17 void setup_fetch_pack(struct fetch_pack_args *args);
19 struct ref *fetch_pack(const char *dest, int nr_heads, char **heads);
21 #endif