1#ifndef FETCH_PACK_H2#define FETCH_PACK_H34struct fetch_pack_args5{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};1617void setup_fetch_pack(struct fetch_pack_args *args);1819struct ref *fetch_pack(const char *dest, int nr_heads, char **heads, char **pack_lockfile);2021#endif