Commit | Line | Data |
---|---|---|
2d4177c0 DB |
1 | #ifndef FETCH_PACK_H |
2 | #define FETCH_PACK_H | |
3 | ||
8bee93dd | 4 | #include "string-list.h" |
47a59185 | 5 | #include "run-command.h" |
8bee93dd | 6 | |
9cba13ca | 7 | struct fetch_pack_args { |
2d4177c0 | 8 | const char *uploadpack; |
2d4177c0 | 9 | int unpacklimit; |
2d4177c0 | 10 | int depth; |
f6486f07 NTND |
11 | unsigned quiet:1; |
12 | unsigned keep_pack:1; | |
13 | unsigned lock_pack:1; | |
14 | unsigned use_thin_pack:1; | |
15 | unsigned fetch_all:1; | |
16 | unsigned stdin_refs:1; | |
17 | unsigned verbose:1; | |
18 | unsigned no_progress:1; | |
19 | unsigned include_tag:1; | |
20 | unsigned stateless_rpc:1; | |
21 | unsigned check_self_contained_and_connected:1; | |
22 | unsigned self_contained_and_connected:1; | |
2d4177c0 DB |
23 | }; |
24 | ||
4ba15999 | 25 | /* |
f2db854d JH |
26 | * sought represents remote references that should be updated from. |
27 | * On return, the names that were found on the remote will have been | |
28 | * marked as such. | |
4ba15999 | 29 | */ |
fa740529 | 30 | struct ref *fetch_pack(struct fetch_pack_args *args, |
63c69453 MH |
31 | int fd[], struct child_process *conn, |
32 | const struct ref *ref, | |
33 | const char *dest, | |
f2db854d JH |
34 | struct ref **sought, |
35 | int nr_sought, | |
63c69453 | 36 | char **pack_lockfile); |
2d4177c0 DB |
37 | |
38 | #endif |