Skip to content
Snippets Groups Projects
Commit 87881055 authored by Todd Zullinger's avatar Todd Zullinger Committed by Junio C Hamano
Browse files

t3404: check root commit in 'rebase -i --root reword root commit'


When testing a reworded root commit, ensure that the squash-onto commit
which is created and amended is still the root commit.

Suggested-by: default avatarPhillip Wood <phillip.wood@talktalk.net>
Helped-by: default avatarJohannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: default avatarTodd Zullinger <tmz@pobox.com>
Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
parent 76fda6eb
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -977,7 +977,8 @@ test_expect_success 'rebase -i --root reword root commit' '
set_fake_editor &&
FAKE_LINES="reword 1 2" FAKE_COMMIT_MESSAGE="A changed" \
git rebase -i --root &&
git show HEAD^ | grep "A changed"
git show HEAD^ | grep "A changed" &&
test -z "$(git show -s --format=%p HEAD^)"
'
 
test_expect_success C_LOCALE_OUTPUT 'rebase --edit-todo does not work on non-interactive rebase' '
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment