ls-remote: pass ref prefixes when requesting a remote's refs
[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 #endif /* UPLOAD_PACK_H */