mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
30261094b1
Add a new flag --sign=true (or --sign=false), which means the same thing as the original --signed (or --no-signed). Give it a third value --sign=if-asked to tell push and send-pack to send a push certificate if and only if the server advertised a push cert nonce. If not, warn the user that their push may not be as secure as they thought. Signed-off-by: Dave Borowitz <dborowitz@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
34 lines
774 B
C
34 lines
774 B
C
#ifndef SEND_PACK_H
|
|
#define SEND_PACK_H
|
|
|
|
/* 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
|
|
|
|
struct send_pack_args {
|
|
const char *url;
|
|
unsigned verbose:1,
|
|
quiet:1,
|
|
porcelain:1,
|
|
progress:1,
|
|
send_mirror:1,
|
|
force_update:1,
|
|
use_thin_pack:1,
|
|
use_ofs_delta:1,
|
|
dry_run:1,
|
|
/* One of the SEND_PACK_PUSH_CERT_* constants. */
|
|
push_cert:2,
|
|
stateless_rpc:1,
|
|
atomic:1;
|
|
};
|
|
|
|
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 sha1_array *extra_have);
|
|
|
|
#endif
|