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