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
ls-files: excludes should not impact tracked files
[git/gitweb.git]
/
send-pack.h
blob
83d76c7e35183ded9eec5a56c59d4da549c0b584
1
#ifndef SEND_PACK_H
2
#define SEND_PACK_H
3
4
struct
send_pack_args
{
5
unsigned
verbose
:
1
,
6
send_mirror
:
1
,
7
force_update
:
1
,
8
use_thin_pack
:
1
,
9
dry_run
:
1
;
10
};
11
12
int
send_pack
(
struct
send_pack_args
*
args
,
13
int
fd
[],
struct
child_process
*
conn
,
14
struct
ref
*
remote_refs
,
struct
extra_have_objects
*
extra_have
);
15
16
#endif