Skip to content

Commit ece3eec

Browse files
committed
rebase: note preserve merges may be a pull config option
The `--preserve-merges` option was removed by v2.35.0. However users may not be aware that it is also a Pull option, and it is still offered by major IDE vendors such as Visual Studio. Extend the `--preserve-merges` die message to also direct users to the use of the `preserve` option in the `pull` config. Signed-off-by: Philip Oakley <[email protected]>
1 parent d0fb541 commit ece3eec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

builtin/rebase.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,8 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
12051205
builtin_rebase_usage, 0);
12061206

12071207
if (preserve_merges_selected)
1208-
die(_("--preserve-merges was replaced by --rebase-merges"));
1208+
die(_("--preserve-merges was replaced by --rebase-merges\n"
1209+
"Your `pull` configuration, may also invoke this option."));
12091210

12101211
if (action != ACTION_NONE && total_argc != 2) {
12111212
usage_with_options(builtin_rebase_usage,

0 commit comments

Comments
 (0)