diff options
author | Elijah Newren <newren@gmail.com> | 2023-01-25 05:03:49 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-25 18:20:53 +0100 |
commit | ffeaca177ac789942b1db95c334d0eff9c8f12a5 (patch) | |
tree | 80ea70ebea76f87b11fbb34c23806ad2b57bda9f /t/t3422-rebase-incompatible-options.sh | |
parent | rebase: fix docs about incompatibilities with --root (diff) | |
download | git-ffeaca177ac789942b1db95c334d0eff9c8f12a5.tar.xz git-ffeaca177ac789942b1db95c334d0eff9c8f12a5.zip |
rebase: fix incompatiblity checks for --[no-]reapply-cherry-picks
--[no-]reapply-cherry-picks was traditionally only supported by the
sequencer. Support was added for the apply backend, when --keep-base is
also specified, in commit ce5238a690 ("rebase --keep-base: imply
--reapply-cherry-picks", 2022-10-17). Make the code error out when
--[no-]reapply-cherry-picks is specified AND the apply backend is used
AND --keep-base is not specified. Also, clarify a number of comments
surrounding the interaction of these flags.
Helped-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rwxr-xr-x | t/t3422-rebase-incompatible-options.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t3422-rebase-incompatible-options.sh b/t/t3422-rebase-incompatible-options.sh index f86274990b..826f3b94ae 100755 --- a/t/t3422-rebase-incompatible-options.sh +++ b/t/t3422-rebase-incompatible-options.sh @@ -60,6 +60,16 @@ test_rebase_am_only () { test_must_fail git rebase $opt --exec 'true' A " + test_expect_success "$opt incompatible with --no-reapply-cherry-picks" " + git checkout B^0 && + test_must_fail git rebase $opt --no-reapply-cherry-picks A + " + + test_expect_success "$opt incompatible with --reapply-cherry-picks" " + git checkout B^0 && + test_must_fail git rebase $opt --reapply-cherry-picks A + " + test_expect_success "$opt incompatible with --update-refs" " git checkout B^0 && test_must_fail git rebase $opt --update-refs A |