]> git.ipfire.org Git - thirdparty/git.git/blame - send-pack.h
Merge git://git.kernel.org/pub/scm/gitk/gitk
[thirdparty/git.git] / send-pack.h
CommitLineData
96249c04
DB
1#ifndef SEND_PACK_H
2#define SEND_PACK_H
3
4struct send_pack_args {
96249c04 5 unsigned verbose:1,
28b9d6e5 6 send_mirror:1,
96249c04
DB
7 force_update:1,
8 use_thin_pack:1,
9 dry_run:1;
10};
11
12int send_pack(struct send_pack_args *args,
64fcef2d
DB
13 int fd[], struct child_process *conn,
14 struct ref *remote_refs, struct extra_have_objects *extra_have);
96249c04
DB
15
16#endif