]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Fix t3411.3 to actually rebase something
authorJohannes Sixt <j6t@kdbg.org>
Fri, 18 May 2012 13:48:53 +0000 (15:48 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 18 May 2012 19:26:49 +0000 (12:26 -0700)
The test intends to rebase a branchy history onto a later commit, but it
forgot to reset HEAD back to an earlier commit before it set up the side
branches. In the end, every "rebased" commit was only a fast-forward and
the 'rebase -p' did not change the commit graph at all. Insert the missing
checkout that moves to an earlier commit.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3411-rebase-preserve-around-merges.sh

index 14a23cd8726fbb33df480133ed0466177916b7fb..fbe896f24ec30c0e612e739d9479ae7c3cc0022d 100755 (executable)
@@ -56,6 +56,7 @@ test_expect_success 'squash F1 into D1' '
 # And rebase G1..M1 onto E2
 
 test_expect_success 'rebase two levels of merge' '
+       git checkout A1 &&
        test_commit G1 &&
        test_commit H1 &&
        test_commit I1 &&