projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
fetch-pack: perform a fetch using v2
[git]
/
upload-pack.h
1
#ifndef UPLOAD_PACK_H
2
#define UPLOAD_PACK_H
3
4
struct upload_pack_options {
5
int stateless_rpc;
6
int advertise_refs;
7
unsigned int timeout;
8
int daemon_mode;
9
};
10
11
void upload_pack(struct upload_pack_options *options);
12
13
struct repository;
14
struct argv_array;
15
extern int upload_pack_v2(struct repository *r, struct argv_array *keys,
16
struct argv_array *args);
17
18
#endif /* UPLOAD_PACK_H */