]> git.ipfire.org Git - thirdparty/git.git/blame - fetch-pack.h
i18n: avoid parenthesized string as array initializer
[thirdparty/git.git] / fetch-pack.h
CommitLineData
2d4177c0
DB
1#ifndef FETCH_PACK_H
2#define FETCH_PACK_H
3
9cba13ca 4struct fetch_pack_args {
2d4177c0 5 const char *uploadpack;
2d4177c0 6 int unpacklimit;
2d4177c0 7 int depth;
bbaf4584
SP
8 unsigned quiet:1,
9 keep_pack:1,
fa740529 10 lock_pack:1,
bbaf4584
SP
11 use_thin_pack:1,
12 fetch_all:1,
13 verbose:1,
348e390b 14 no_progress:1,
249b2004
SP
15 include_tag:1,
16 stateless_rpc:1;
2d4177c0
DB
17};
18
fa740529 19struct ref *fetch_pack(struct fetch_pack_args *args,
ba227857
DB
20 int fd[], struct child_process *conn,
21 const struct ref *ref,
fa740529
SP
22 const char *dest,
23 int nr_heads,
24 char **heads,
25 char **pack_lockfile);
2d4177c0
DB
26
27#endif