|
|
|
@ -120,6 +120,7 @@ static struct replay_opts get_replay_opts(const struct rebase_options *opts)
@@ -120,6 +120,7 @@ static struct replay_opts get_replay_opts(const struct rebase_options *opts)
|
|
|
|
|
replay.allow_empty_message = opts->allow_empty_message; |
|
|
|
|
replay.drop_redundant_commits = (opts->empty == EMPTY_DROP); |
|
|
|
|
replay.keep_redundant_commits = (opts->empty == EMPTY_KEEP); |
|
|
|
|
replay.quiet = !(opts->flags & REBASE_NO_QUIET); |
|
|
|
|
replay.verbose = opts->flags & REBASE_VERBOSE; |
|
|
|
|
replay.reschedule_failed_exec = opts->reschedule_failed_exec; |
|
|
|
|
replay.gpg_sign = xstrdup_or_null(opts->gpg_sign_opt); |
|
|
|
@ -1476,7 +1477,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
@@ -1476,7 +1477,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
|
|
|
|
|
N_("allow pre-rebase hook to run")), |
|
|
|
|
OPT_NEGBIT('q', "quiet", &options.flags, |
|
|
|
|
N_("be quiet. implies --no-stat"), |
|
|
|
|
REBASE_NO_QUIET| REBASE_VERBOSE | REBASE_DIFFSTAT), |
|
|
|
|
REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT), |
|
|
|
|
OPT_BIT('v', "verbose", &options.flags, |
|
|
|
|
N_("display a diffstat of what changed upstream"), |
|
|
|
|
REBASE_NO_QUIET | REBASE_VERBOSE | REBASE_DIFFSTAT), |
|
|
|
|