Skip to content

Commit 1cfc4c8

Browse files
ralfthgitster
authored andcommitted
git-rebase.sh: fix typos in error messages
Signed-off-by: Ralf Thielow <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent fe8321e commit 1cfc4c8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

git-rebase.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -553,15 +553,15 @@ then
553553
# Note: incompatibility with --interactive is just a strong warning;
554554
# git-rebase.txt caveats with "unless you know what you are doing"
555555
test -n "$rebase_merges" &&
556-
die "$(gettext "error: cannot combine '--preserve_merges' with '--rebase-merges'")"
556+
die "$(gettext "error: cannot combine '--preserve-merges' with '--rebase-merges'")"
557557
fi
558558

559559
if test -n "$rebase_merges"
560560
then
561561
test -n "$strategy_opts" &&
562-
die "$(gettext "error: cannot combine '--rebase_merges' with '--strategy-option'")"
562+
die "$(gettext "error: cannot combine '--rebase-merges' with '--strategy-option'")"
563563
test -n "$strategy" &&
564-
die "$(gettext "error: cannot combine '--rebase_merges' with '--strategy'")"
564+
die "$(gettext "error: cannot combine '--rebase-merges' with '--strategy'")"
565565
fi
566566

567567
if test -z "$rebase_root"

0 commit comments

Comments
 (0)