projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'ab/config-based-hooks-base' into seen
[git]
/
serve.h
1
#ifndef SERVE_H
2
#define SERVE_H
3
4
struct serve_options {
5
unsigned advertise_capabilities;
6
unsigned stateless_rpc;
7
};
8
#define SERVE_OPTIONS_INIT { 0 }
9
void serve(struct serve_options *options);
10
11
#endif /* SERVE_H */