3 test_description='test multi-tree read-tree without merging'
7 test_expect_success setup '
10 git commit -m initial &&
14 git commit -m second &&
15 git checkout -b side initial &&
23 test_expect_success 'multi-read' '
24 git read-tree initial master side &&
25 (echo a; echo b/c) >expect &&
26 git ls-files >actual &&
27 test_cmp expect actual