1#ifndef SEND_PACK_H
2#define SEND_PACK_H
34
struct send_pack_args {
5unsigned verbose:1,
6quiet:1,
7porcelain:1,
8progress:1,
9send_mirror:1,
10force_update:1,
11use_thin_pack:1,
12use_ofs_delta:1,
13dry_run:1,
14push_cert:1,
15stateless_rpc:1;
16};
1718
int send_pack(struct send_pack_args *args,
19int fd[], struct child_process *conn,
20struct ref *remote_refs, struct sha1_array *extra_have);
2122
#endif