2007-10-29 22:03:39 -04:00
|
|
|
#ifndef SEND_PACK_H
|
|
|
|
#define SEND_PACK_H
|
|
|
|
|
2016-07-14 14:49:47 -07:00
|
|
|
#include "string-list.h"
|
|
|
|
|
2015-08-19 11:26:46 -04:00
|
|
|
/* Possible values for push_cert field in send_pack_args. */
|
|
|
|
#define SEND_PACK_PUSH_CERT_NEVER 0
|
|
|
|
#define SEND_PACK_PUSH_CERT_IF_ASKED 1
|
|
|
|
#define SEND_PACK_PUSH_CERT_ALWAYS 2
|
|
|
|
|
2007-10-29 22:03:39 -04:00
|
|
|
struct send_pack_args {
|
2014-08-22 18:15:24 -07:00
|
|
|
const char *url;
|
2007-10-29 22:03:39 -04:00
|
|
|
unsigned verbose:1,
|
2009-08-05 16:22:36 -04:00
|
|
|
quiet:1,
|
2010-02-26 23:52:15 -05:00
|
|
|
porcelain:1,
|
2010-10-17 02:37:03 +08:00
|
|
|
progress:1,
|
2007-11-09 23:32:10 +00:00
|
|
|
send_mirror:1,
|
2007-10-29 22:03:39 -04:00
|
|
|
force_update:1,
|
|
|
|
use_thin_pack:1,
|
2009-05-01 16:56:47 -04:00
|
|
|
use_ofs_delta:1,
|
2009-10-30 17:47:41 -07:00
|
|
|
dry_run:1,
|
2015-08-19 11:26:46 -04:00
|
|
|
/* One of the SEND_PACK_PUSH_CERT_* constants. */
|
|
|
|
push_cert:2,
|
2015-01-07 19:23:22 -08:00
|
|
|
stateless_rpc:1,
|
|
|
|
atomic:1;
|
2016-07-14 14:49:47 -07:00
|
|
|
const struct string_list *push_options;
|
2007-10-29 22:03:39 -04:00
|
|
|
};
|
|
|
|
|
2015-08-19 11:26:46 -04:00
|
|
|
struct option;
|
|
|
|
int option_parse_push_signed(const struct option *opt,
|
|
|
|
const char *arg, int unset);
|
|
|
|
|
2007-10-29 22:03:39 -04:00
|
|
|
int send_pack(struct send_pack_args *args,
|
2009-03-08 21:06:07 -04:00
|
|
|
int fd[], struct child_process *conn,
|
2017-03-31 01:40:00 +00:00
|
|
|
struct ref *remote_refs, struct oid_array *extra_have);
|
2007-10-29 22:03:39 -04:00
|
|
|
|
|
|
|
#endif
|