| test_description='apply same filename' |
| test_expect_success 'setup' ' |
| echo Hello > some/sub/dir/file && |
| git add some/sub/dir/file && |
| diff a/bla/blub/dir/file b/bla/blub/dir/file |
| test_expect_success 'apply --directory -p (1)' ' |
| git apply --directory=some/sub -p3 --index patch && |
| test Bello = $(git show :some/sub/dir/file) && |
| test Bello = $(cat some/sub/dir/file) |
| test_expect_success 'apply --directory -p (2) ' ' |
| git reset --hard initial && |
| git apply --directory=some/sub/ -p3 --index patch && |
| test Bello = $(git show :some/sub/dir/file) && |
| test Bello = $(cat some/sub/dir/file) |