Fix extraneous lstat's in 'git checkout -f'
[git/dscho.git] / send-pack.h
blob1d7b1b3b4f41177dfd6637fcd98a0fc01f310c09
1 #ifndef SEND_PACK_H
2 #define SEND_PACK_H
4 struct send_pack_args {
5 unsigned verbose:1,
6 send_mirror:1,
7 force_update:1,
8 use_thin_pack:1,
9 use_ofs_delta:1,
10 dry_run:1;
13 int send_pack(struct send_pack_args *args,
14 int fd[], struct child_process *conn,
15 struct ref *remote_refs, struct extra_have_objects *extra_have);
17 #endif