repo.or.cz
/
git
/
mingw.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
t: test http access to "half-auth" repositories
[git/mingw.git]
/
fetch-pack.h
blob
7c2069c97234453cb6a0a774c1859b7055b791d8
1
#ifndef FETCH_PACK_H
2
#define FETCH_PACK_H
3
4
struct
fetch_pack_args
{
5
const char
*
uploadpack
;
6
int
unpacklimit
;
7
int
depth
;
8
unsigned
quiet
:
1
,
9
keep_pack
:
1
,
10
lock_pack
:
1
,
11
use_thin_pack
:
1
,
12
fetch_all
:
1
,
13
stdin_refs
:
1
,
14
verbose
:
1
,
15
no_progress
:
1
,
16
include_tag
:
1
,
17
stateless_rpc
:
1
;
18
};
19
20
struct
ref
*
fetch_pack
(
struct
fetch_pack_args
*
args
,
21
int
fd
[],
struct
child_process
*
conn
,
22
const struct
ref
*
ref
,
23
const char
*
dest
,
24
int
nr_heads
,
25
char
**
heads
,
26
char
**
pack_lockfile
);
27
28
#endif