repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
dir: remove unused variable sb
[alt-git.git]
/
send-pack.h
blob
b6646488aaf93814c5053d79528c1b5a4d19bcb5
1
#ifndef SEND_PACK_H
2
#define SEND_PACK_H
3
4
struct
send_pack_args
{
5
const char
*
url
;
6
unsigned
verbose
:
1
,
7
quiet
:
1
,
8
porcelain
:
1
,
9
progress
:
1
,
10
send_mirror
:
1
,
11
force_update
:
1
,
12
use_thin_pack
:
1
,
13
use_ofs_delta
:
1
,
14
dry_run
:
1
,
15
push_cert
:
1
,
16
stateless_rpc
:
1
,
17
atomic
:
1
;
18
};
19
20
int
send_pack
(
struct
send_pack_args
*
args
,
21
int
fd
[],
struct
child_process
*
conn
,
22
struct
ref
*
remote_refs
,
struct
sha1_array
*
extra_have
);
23
24
#endif