Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions t/t6042-merge-rename-corner-cases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1175,15 +1175,15 @@ test_expect_success 'setup nested conflicts from rename/rename(2to1)' '

# Handle the left side
git checkout L &&
git mv one three &&
git rm one two &&
mv -f file_v2 three &&
mv -f file_v5 two &&
git add two three &&
test_tick && git commit -m spanish &&

# Handle the right side
git checkout R &&
git mv two three &&
git rm one two &&
mv -f file_v3 one &&
mv -f file_v6 three &&
git add one three &&
Expand Down