]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3512-cherry-pick-submodule.sh
Merge branch 'ab/detox-gettext-tests'
[thirdparty/git.git] / t / t3512-cherry-pick-submodule.sh
CommitLineData
283f56a4
JL
1#!/bin/sh
2
3test_description='cherry-pick can handle submodules'
4
cbc75a12 5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
283f56a4
JL
8. ./test-lib.sh
9. "$TEST_DIRECTORY"/lib-submodule-update.sh
10
283f56a4
JL
11KNOWN_FAILURE_NOFF_MERGE_DOESNT_CREATE_EMPTY_SUBMODULE_DIR=1
12KNOWN_FAILURE_NOFF_MERGE_ATTEMPTS_TO_MERGE_REMOVED_SUBMODULE_FILES=1
aa06180a 13test_submodule_switch "cherry-pick"
283f56a4 14
c641ca67 15test_expect_success 'unrelated submodule/file conflict is ignored' '
89c4ee4e
SB
16 test_create_repo sub &&
17
18 touch sub/file &&
19 git -C sub add file &&
20 git -C sub commit -m "add a file in a submodule" &&
21
22 test_create_repo a_repo &&
23 (
24 cd a_repo &&
25 >a_file &&
26 git add a_file &&
27 git commit -m "add a file" &&
28
29 git branch test &&
30 git checkout test &&
31
32 mkdir sub &&
33 >sub/content &&
34 git add sub/content &&
35 git commit -m "add a regular folder with name sub" &&
36
37 echo "123" >a_file &&
38 git add a_file &&
39 git commit -m "modify a file" &&
40
cbc75a12 41 git checkout main &&
89c4ee4e
SB
42
43 git submodule add ../sub sub &&
44 git submodule update sub &&
45 git commit -m "add a submodule info folder with name sub" &&
46
47 git cherry-pick test
48 )
49'
50
283f56a4 51test_done