upload-pack: introduce fetch server command

Introduce the 'fetch' server command.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Williams
2018-03-15 10:31:27 -07:00
committed by Junio C Hamano
parent 5b872fff18
commit 3145ea957d
5 changed files with 400 additions and 0 deletions

View File

@@ -10,4 +10,10 @@ struct upload_pack_options {
void upload_pack(struct upload_pack_options *options);
struct repository;
struct argv_array;
struct packet_reader;
extern int upload_pack_v2(struct repository *r, struct argv_array *keys,
struct packet_reader *request);
#endif /* UPLOAD_PACK_H */