3 test_description='update-index and add refuse to add beyond symlinks'
7 test_expect_success setup '
12 git update-index --add a b/d
15 test_expect_success 'update-index --add beyond symlinks' '
16 test_must_fail git update-index --add c/d &&
17 ! ( git ls-files | grep c/d )
20 test_expect_success 'add beyond symlinks' '
21 test_must_fail git add c/d &&
22 ! ( git ls-files | grep c/d )