repo.or.cz
/
git
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
t/t9001-send-email.sh: change from skip_all=* to prereq skip
[git/dkf.git]
/
send-pack.h
blob
60b4ba66eb8cac3378326378dc4e0cbdb88162ac
1
#ifndef SEND_PACK_H
2
#define SEND_PACK_H
3
4
struct
send_pack_args
{
5
unsigned
verbose
:
1
,
6
quiet
:
1
,
7
porcelain
:
1
,
8
send_mirror
:
1
,
9
force_update
:
1
,
10
use_thin_pack
:
1
,
11
use_ofs_delta
:
1
,
12
dry_run
:
1
,
13
stateless_rpc
:
1
;
14
};
15
16
int
send_pack
(
struct
send_pack_args
*
args
,
17
int
fd
[],
struct
child_process
*
conn
,
18
struct
ref
*
remote_refs
,
struct
extra_have_objects
*
extra_have
);
19
20
#endif