4 #include "string-list.h"
5 #include "run-command.h"
9 struct fetch_pack_args
{
10 const char *uploadpack
;
13 const char *deepen_since
;
14 const struct string_list
*deepen_not
;
18 unsigned use_thin_pack
:1;
20 unsigned stdin_refs
:1;
23 unsigned no_progress
:1;
24 unsigned include_tag
:1;
25 unsigned stateless_rpc
:1;
26 unsigned check_self_contained_and_connected
:1;
27 unsigned self_contained_and_connected
:1;
29 unsigned update_shallow
:1;
34 * sought represents remote references that should be updated from.
35 * On return, the names that were found on the remote will have been
38 struct ref
*fetch_pack(struct fetch_pack_args
*args
,
39 int fd
[], struct child_process
*conn
,
40 const struct ref
*ref
,
44 struct sha1_array
*shallow
,
45 char **pack_lockfile
);