| # Copyright (c) 2007 Johannes Sixt |
| test_description='merging symlinks on filesystem w/o symlink support. |
| This tests that git-merge-recursive writes merge results as plain files |
| if core.symlinks is false.' |
| git config core.symlinks false && |
| l=$(echo -n file | git-hash-object -t blob -w --stdin) && |
| echo "120000 $l symlink" | git update-index --index-info && |
| git-checkout b-symlink && |
| l=$(echo -n file-different | git-hash-object -t blob -w --stdin) && |
| echo "120000 $l symlink" | git update-index --index-info && |
| git-commit -m b-symlink && |
| echo plain-file > symlink && |
| 'merge master into b-symlink, which has a different symbolic link' ' |
| ! git-checkout b-symlink || |
| 'the merge result must be a file' ' |
| 'merge master into b-file, which has a file instead of a symbolic link' ' |
| 'the merge result must be a file' ' |
| 'merge b-file, which has a file instead of a symbolic link, into master' ' |
| 'the merge result must be a file' ' |