Merge branch 'jc/retire-cas-opt-name-constant'
Code clean-up. * jc/retire-cas-opt-name-constant: remote.h: retire CAS_OPT_NAME
This commit is contained in:
@ -392,7 +392,7 @@ static int push_with_options(struct transport *transport, struct refspec *rs,
|
|||||||
if (!is_empty_cas(&cas)) {
|
if (!is_empty_cas(&cas)) {
|
||||||
if (!transport->smart_options)
|
if (!transport->smart_options)
|
||||||
die("underlying transport does not support --%s option",
|
die("underlying transport does not support --%s option",
|
||||||
CAS_OPT_NAME);
|
"force-with-lease");
|
||||||
transport->smart_options->cas = &cas;
|
transport->smart_options->cas = &cas;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -599,7 +599,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
|
|||||||
OPT_BIT('n' , "dry-run", &flags, N_("dry run"), TRANSPORT_PUSH_DRY_RUN),
|
OPT_BIT('n' , "dry-run", &flags, N_("dry run"), TRANSPORT_PUSH_DRY_RUN),
|
||||||
OPT_BIT( 0, "porcelain", &flags, N_("machine-readable output"), TRANSPORT_PUSH_PORCELAIN),
|
OPT_BIT( 0, "porcelain", &flags, N_("machine-readable output"), TRANSPORT_PUSH_PORCELAIN),
|
||||||
OPT_BIT('f', "force", &flags, N_("force updates"), TRANSPORT_PUSH_FORCE),
|
OPT_BIT('f', "force", &flags, N_("force updates"), TRANSPORT_PUSH_FORCE),
|
||||||
OPT_CALLBACK_F(0, CAS_OPT_NAME, &cas, N_("<refname>:<expect>"),
|
OPT_CALLBACK_F(0, "force-with-lease", &cas, N_("<refname>:<expect>"),
|
||||||
N_("require old value of ref to be at this value"),
|
N_("require old value of ref to be at this value"),
|
||||||
PARSE_OPT_OPTARG | PARSE_OPT_LITERAL_ARGHELP, parseopt_push_cas_option),
|
PARSE_OPT_OPTARG | PARSE_OPT_LITERAL_ARGHELP, parseopt_push_cas_option),
|
||||||
OPT_BIT(0, TRANS_OPT_FORCE_IF_INCLUDES, &flags,
|
OPT_BIT(0, TRANS_OPT_FORCE_IF_INCLUDES, &flags,
|
||||||
|
@ -205,7 +205,7 @@ int cmd_send_pack(int argc, const char **argv, const char *prefix)
|
|||||||
OPT_BOOL(0, "stateless-rpc", &stateless_rpc, N_("use stateless RPC protocol")),
|
OPT_BOOL(0, "stateless-rpc", &stateless_rpc, N_("use stateless RPC protocol")),
|
||||||
OPT_BOOL(0, "stdin", &from_stdin, N_("read refs from stdin")),
|
OPT_BOOL(0, "stdin", &from_stdin, N_("read refs from stdin")),
|
||||||
OPT_BOOL(0, "helper-status", &helper_status, N_("print status from remote helper")),
|
OPT_BOOL(0, "helper-status", &helper_status, N_("print status from remote helper")),
|
||||||
OPT_CALLBACK_F(0, CAS_OPT_NAME, &cas, N_("<refname>:<expect>"),
|
OPT_CALLBACK_F(0, "force-with-lease", &cas, N_("<refname>:<expect>"),
|
||||||
N_("require old value of ref to be at this value"),
|
N_("require old value of ref to be at this value"),
|
||||||
PARSE_OPT_OPTARG, parseopt_push_cas_option),
|
PARSE_OPT_OPTARG, parseopt_push_cas_option),
|
||||||
OPT_BOOL(0, TRANS_OPT_FORCE_IF_INCLUDES, &force_if_includes,
|
OPT_BOOL(0, TRANS_OPT_FORCE_IF_INCLUDES, &force_if_includes,
|
||||||
|
2
remote.h
2
remote.h
@ -401,8 +401,6 @@ struct ref *get_stale_heads(struct refspec *rs, struct ref *fetch_map);
|
|||||||
/*
|
/*
|
||||||
* Compare-and-swap
|
* Compare-and-swap
|
||||||
*/
|
*/
|
||||||
#define CAS_OPT_NAME "force-with-lease"
|
|
||||||
|
|
||||||
struct push_cas_option {
|
struct push_cas_option {
|
||||||
unsigned use_tracking_for_rest:1;
|
unsigned use_tracking_for_rest:1;
|
||||||
unsigned use_force_if_includes:1;
|
unsigned use_force_if_includes:1;
|
||||||
|
Reference in New Issue
Block a user