]> git.ipfire.org Git - thirdparty/git.git/blame - fetch-pack.h
upload-pack: make sure deepening preserves shallow roots
[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"
8bee93dd 6
beea4152
NTND
7struct sha1_array;
8
9cba13ca 9struct fetch_pack_args {
2d4177c0 10 const char *uploadpack;
2d4177c0 11 int unpacklimit;
2d4177c0 12 int depth;
f6486f07
NTND
13 unsigned quiet:1;
14 unsigned keep_pack:1;
15 unsigned lock_pack:1;
16 unsigned use_thin_pack:1;
17 unsigned fetch_all:1;
18 unsigned stdin_refs:1;
19 unsigned verbose:1;
20 unsigned no_progress:1;
21 unsigned include_tag:1;
22 unsigned stateless_rpc:1;
23 unsigned check_self_contained_and_connected:1;
24 unsigned self_contained_and_connected:1;
beea4152 25 unsigned cloning:1;
2d4177c0
DB
26};
27
4ba15999 28/*
f2db854d
JH
29 * sought represents remote references that should be updated from.
30 * On return, the names that were found on the remote will have been
31 * marked as such.
4ba15999 32 */
fa740529 33struct ref *fetch_pack(struct fetch_pack_args *args,
63c69453
MH
34 int fd[], struct child_process *conn,
35 const struct ref *ref,
36 const char *dest,
f2db854d
JH
37 struct ref **sought,
38 int nr_sought,
beea4152 39 struct sha1_array *shallow,
63c69453 40 char **pack_lockfile);
2d4177c0
DB
41
42#endif