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