From: Alban Gruin Date: Sun, 24 Nov 2019 17:43:31 +0000 (+0100) Subject: rebase: fill `squash_onto' in get_replay_opts() X-Git-Tag: v2.25.0-rc0~36^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2dd67f10523d3593f404b9889b6318f75ab988c;p=thirdparty%2Fgit.git rebase: fill `squash_onto' in get_replay_opts() When sequencer_continue() is called by complete_action(), `opts' has been filled by get_replay_opts(). Currently, it does not initialise the `squash_onto' field (used by the `--root' mode), only read_populate_opts() does. It’s not a problem yet since sequencer_continue() calls it before pick_commits(), but it would lead to incorrect results once complete_action() is modified to call pick_commits() directly. Let’s change that. Signed-off-by: Alban Gruin Signed-off-by: Junio C Hamano --- diff --git a/builtin/rebase.c b/builtin/rebase.c index 4a20582e72..b171c86e3d 100644 --- a/builtin/rebase.c +++ b/builtin/rebase.c @@ -117,6 +117,11 @@ static struct replay_opts get_replay_opts(const struct rebase_options *opts) if (opts->strategy_opts) parse_strategy_opts(&replay, opts->strategy_opts); + if (opts->squash_onto) { + oidcpy(&replay.squash_onto, opts->squash_onto); + replay.have_squash_onto = 1; + } + return replay; }