1#ifndef FETCH_PACK_H
2#define FETCH_PACK_H
34
struct fetch_pack_args
5{
6const char *uploadpack;
7int unpacklimit;
8int depth;
9unsigned quiet:1,
10keep_pack:1,
11use_thin_pack:1,
12fetch_all:1,
13verbose:1,
14no_progress:1;
15};
1617
void setup_fetch_pack(struct fetch_pack_args *args);
1819
struct ref *fetch_pack(const char *dest, int nr_heads, char **heads, char **pack_lockfile);
2021
#endif