]> git.ipfire.org Git - thirdparty/git.git/blame - t/t6425-merge-rename-delete.sh
Merge branch 'es/maintenance-of-bare-repositories'
[thirdparty/git.git] / t / t6425-merge-rename-delete.sh
CommitLineData
b26d87f2
MM
1#!/bin/sh
2
3test_description='Merge-recursive rename/delete conflict message'
5902f5f4 4GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
5export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6
b26d87f2
MM
7. ./test-lib.sh
8
9test_expect_success 'rename/delete' '
10 echo foo >A &&
11 git add A &&
12 git commit -m "initial" &&
13
14 git checkout -b rename &&
15 git mv A B &&
16 git commit -m "rename" &&
17
5902f5f4 18 git checkout main &&
b26d87f2
MM
19 git rm A &&
20 git commit -m "delete" &&
21
22 test_must_fail git merge --strategy=recursive rename >output &&
1f3c9ba7
EN
23 test_i18ngrep "CONFLICT (rename/delete): A.* renamed .*to B.* in rename" output &&
24 test_i18ngrep "CONFLICT (rename/delete): A.*deleted in HEAD." output
b26d87f2
MM
25'
26
27test_done