]> git.ipfire.org Git - thirdparty/git.git/blame - fetch-pack.h
Sync with 2.17.3
[thirdparty/git.git] / fetch-pack.h
CommitLineData
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"
685fbd32 6#include "protocol.h"
640d8b72 7#include "list-objects-filter-options.h"
8bee93dd 8
910650d2 9struct oid_array;
beea4152 10
9cba13ca 11struct fetch_pack_args {
2d4177c0 12 const char *uploadpack;
2d4177c0 13 int unpacklimit;
2d4177c0 14 int depth;
508ea882 15 const char *deepen_since;
a45a2600 16 const struct string_list *deepen_not;
640d8b72 17 struct list_objects_filter_options filter_options;
5e3548ef 18 const struct string_list *server_options;
cccf74e2 19 unsigned deepen_relative:1;
f6486f07
NTND
20 unsigned quiet:1;
21 unsigned keep_pack:1;
22 unsigned lock_pack:1;
23 unsigned use_thin_pack:1;
24 unsigned fetch_all:1;
25 unsigned stdin_refs:1;
92251b1b 26 unsigned diag_url:1;
f6486f07
NTND
27 unsigned verbose:1;
28 unsigned no_progress:1;
29 unsigned include_tag:1;
30 unsigned stateless_rpc:1;
31 unsigned check_self_contained_and_connected:1;
32 unsigned self_contained_and_connected:1;
beea4152 33 unsigned cloning:1;
48d25cae 34 unsigned update_shallow:1;
79891cb9 35 unsigned deepen:1;
88e2f9ed
JT
36 unsigned from_promisor:1;
37
38 /*
39 * If 1, fetch_pack() will also not modify any object flags.
40 * This allows fetch_pack() to safely be called by any function,
41 * regardless of which object flags it uses (if any).
42 */
43 unsigned no_dependents:1;
2d4177c0
DB
44};
45
4ba15999 46/*
f2db854d
JH
47 * sought represents remote references that should be updated from.
48 * On return, the names that were found on the remote will have been
49 * marked as such.
4ba15999 50 */
fa740529 51struct ref *fetch_pack(struct fetch_pack_args *args,
63c69453
MH
52 int fd[], struct child_process *conn,
53 const struct ref *ref,
54 const char *dest,
f2db854d
JH
55 struct ref **sought,
56 int nr_sought,
910650d2 57 struct oid_array *shallow,
685fbd32
BW
58 char **pack_lockfile,
59 enum protocol_version version);
2d4177c0 60
e860d96b
MM
61/*
62 * Print an appropriate error message for each sought ref that wasn't
63 * matched. Return 0 if all sought refs were matched, otherwise 1.
64 */
65int report_unmatched_refs(struct ref **sought, int nr_sought);
66
2d4177c0 67#endif