1#ifndef FETCH_PACK_H
2#define FETCH_PACK_H
34
struct fetch_pack_args
5{
6const char *uploadpack;
7int quiet;
8int keep_pack;
9int unpacklimit;
10int use_thin_pack;
11int fetch_all;
12int verbose;
13int depth;
14int no_progress;
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