repo.or.cz
/
git
/
gitweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add transport.h to LIB_H as transport.o is in LIB_OBJS
[git/gitweb.git]
/
fetch-pack.h
blob
cdcd84f2b562d2f6a47a2ed2f4434034f639cbd5
1
#ifndef FETCH_PACK_H
2
#define FETCH_PACK_H
3
4
struct
fetch_pack_args
5
{
6
const char
*
uploadpack
;
7
int
quiet
;
8
int
keep_pack
;
9
int
unpacklimit
;
10
int
use_thin_pack
;
11
int
fetch_all
;
12
int
verbose
;
13
int
depth
;
14
int
no_progress
;
15
};
16
17
void
setup_fetch_pack
(
struct
fetch_pack_args
*
args
);
18
19
struct
ref
*
fetch_pack
(
const char
*
dest
,
int
nr_heads
,
char
**
heads
,
char
**
pack_lockfile
);
20
21
#endif