the beginning of the signed push
[git/jrn.git] / send-pack.h
blob3555d8e8adde814207e72630c0d193291d4e6c39
1 #ifndef SEND_PACK_H
2 #define SEND_PACK_H
4 struct send_pack_args {
5 unsigned verbose:1,
6 quiet:1,
7 porcelain:1,
8 progress:1,
9 send_mirror:1,
10 force_update:1,
11 use_thin_pack:1,
12 use_ofs_delta:1,
13 dry_run:1,
14 push_cert:1,
15 stateless_rpc:1;
18 int send_pack(struct send_pack_args *args,
19 int fd[], struct child_process *conn,
20 struct ref *remote_refs, struct sha1_array *extra_have);
22 #endif