#ifndef SEND_PACK_H #define SEND_PACK_H #include "string-list.h" struct child_process; struct oid_array; struct ref; /* Possible values for push_cert field in send_pack_args. */ #define SEND_PACK_PUSH_CERT_NEVER … #define SEND_PACK_PUSH_CERT_IF_ASKED … #define SEND_PACK_PUSH_CERT_ALWAYS … struct send_pack_args { … }; struct option; int option_parse_push_signed(const struct option *opt, const char *arg, int unset); int send_pack(struct send_pack_args *args, int fd[], struct child_process *conn, struct ref *remote_refs, struct oid_array *extra_have); #endif