Merge branch 'ar/fix-git-pull-no-verify'
[git/debian.git] / t / t1008-read-tree-overlay.sh
blob4512fb0b6e68b4ac12e54610441fe1f2de89ea0c
1 #!/bin/sh
3 test_description='test multi-tree read-tree without merging'
5 GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
6 export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8 . ./test-lib.sh
9 . "$TEST_DIRECTORY"/lib-read-tree.sh
11 test_expect_success setup '
12 echo one >a &&
13 git add a &&
14 git commit -m initial &&
15 git tag initial &&
16 echo two >b &&
17 git add b &&
18 git commit -m second &&
19 git checkout -b side initial &&
20 echo three >a &&
21 mkdir b &&
22 echo four >b/c &&
23 git add b/c &&
24 git commit -m third
27 test_expect_success 'multi-read' '
28 read_tree_must_succeed initial main side &&
29 test_write_lines a b/c >expect &&
30 git ls-files >actual &&
31 test_cmp expect actual
34 test_done