]> git.ipfire.org Git - thirdparty/git.git/blame - fetch-pack.h
config: drop cf validity check in get_next_char()
[thirdparty/git.git] / fetch-pack.h
CommitLineData
2d4177c0
DB
1#ifndef FETCH_PACK_H
2#define FETCH_PACK_H
3
8bee93dd
MH
4#include "string-list.h"
5
9cba13ca 6struct fetch_pack_args {
2d4177c0 7 const char *uploadpack;
2d4177c0 8 int unpacklimit;
2d4177c0 9 int depth;
bbaf4584
SP
10 unsigned quiet:1,
11 keep_pack:1,
fa740529 12 lock_pack:1,
bbaf4584
SP
13 use_thin_pack:1,
14 fetch_all:1,
078b895f 15 stdin_refs:1,
bbaf4584 16 verbose:1,
348e390b 17 no_progress:1,
249b2004
SP
18 include_tag:1,
19 stateless_rpc:1;
2d4177c0
DB
20};
21
4ba15999 22/*
f2db854d
JH
23 * sought represents remote references that should be updated from.
24 * On return, the names that were found on the remote will have been
25 * marked as such.
4ba15999 26 */
fa740529 27struct ref *fetch_pack(struct fetch_pack_args *args,
63c69453
MH
28 int fd[], struct child_process *conn,
29 const struct ref *ref,
30 const char *dest,
f2db854d
JH
31 struct ref **sought,
32 int nr_sought,
63c69453 33 char **pack_lockfile);
2d4177c0
DB
34
35#endif