On Wed, Feb 22, 2023 at 3:16 AM Phillip Wood <phillip.wood123@xxxxxxxxx> wrote: > > On 22/02/2023 01:37, Alex Henrie wrote: > > On Tue, Feb 21, 2023 at 4:00 AM Phillip Wood <phillip.wood123@xxxxxxxxx> wrote: > >> > >> On 21/02/2023 05:58, Alex Henrie wrote: > >>> +test_expect_success 'do not rebase merges unless asked to' ' > >>> + git checkout -b rebase-merges-default E && > >>> + before="$(git rev-parse --verify HEAD)" && > >>> + test_tick && > >>> + git rebase --rebase-merges C && > >> > >> I don't quite follow what this part of the test is for > > > > The test is modeled after the existing test "do not rebase cousins > > unless asked for". First, it verifies that --rebase-merges rebases the > > merges, which in this case results in no changes to the branch. Then, > > it verifies that `git rebase` without arguments flattens the history. > > I think "do not rebase cousins unless asked for" is a bit different > because it is checking the default for --rebase-merges which seems > reasonable. I cannot see the point of checking that --rebase-merges > works in this test as we have a whole file of tests that already do that. I've removed the test in v4. Thanks again for the feedback. -Alex