refs: add expand_ref()
[git.git] / fetch-pack.h
blobf7eadb21eb909c7e5eb72d4674972004c4dafa0f
1 #ifndef FETCH_PACK_H
2 #define FETCH_PACK_H
4 #include "string-list.h"
5 #include "run-command.h"
7 struct sha1_array;
9 struct fetch_pack_args {
10 const char *uploadpack;
11 int unpacklimit;
12 int depth;
13 const char *deepen_since;
14 unsigned quiet:1;
15 unsigned keep_pack:1;
16 unsigned lock_pack:1;
17 unsigned use_thin_pack:1;
18 unsigned fetch_all:1;
19 unsigned stdin_refs:1;
20 unsigned diag_url:1;
21 unsigned verbose:1;
22 unsigned no_progress:1;
23 unsigned include_tag:1;
24 unsigned stateless_rpc:1;
25 unsigned check_self_contained_and_connected:1;
26 unsigned self_contained_and_connected:1;
27 unsigned cloning:1;
28 unsigned update_shallow:1;
29 unsigned deepen:1;
33 * sought represents remote references that should be updated from.
34 * On return, the names that were found on the remote will have been
35 * marked as such.
37 struct ref *fetch_pack(struct fetch_pack_args *args,
38 int fd[], struct child_process *conn,
39 const struct ref *ref,
40 const char *dest,
41 struct ref **sought,
42 int nr_sought,
43 struct sha1_array *shallow,
44 char **pack_lockfile);
46 #endif