3 test_description
='Intent to add'
7 test_expect_success
'intent to add' '
18 test_expect_success
'git status' '
19 git status --porcelain | grep -v actual >actual &&
20 cat >expect <<-\EOF &&
25 test_cmp expect actual
28 test_expect_success
'check result of "add -N"' '
29 git ls-files -s file >actual &&
30 empty=$(git hash-object --stdin </dev/null) &&
31 echo "100644 $empty 0 file" >expect &&
32 test_cmp expect actual
35 test_expect_success
'intent to add is just an ordinary empty blob' '
37 git ls-files -s file >actual &&
38 git ls-files -s elif | sed -e "s/elif/file/" >expect &&
39 test_cmp expect actual
42 test_expect_success
'intent to add does not clobber existing paths' '
43 git add -N file elif &&
44 empty=$(git hash-object --stdin </dev/null) &&
45 git ls-files -s >actual &&
46 ! grep "$empty" actual
49 test_expect_success
'i-t-a entry is simply ignored' '
51 git commit -a -m initial &&
58 git commit -m second &&
59 test $(git ls-tree HEAD -- nitfol | wc -l) = 0 &&
60 test $(git diff --name-only HEAD -- nitfol | wc -l) = 0 &&
61 test $(git diff --name-only -- nitfol | wc -l) = 1
64 test_expect_success
'can commit with an unrelated i-t-a entry in index' '
66 echo bozbar >rezrov &&
70 git commit -m partial rezrov
73 test_expect_success
'can "commit -a" with an i-t-a entry' '
80 test_expect_success
'cache-tree invalidates i-t-a paths' '
89 git diff --cached --name-only >actual &&
91 test_cmp expect actual &&
93 git write-tree >/dev/null &&
95 git diff --cached --name-only >actual &&
97 test_cmp expect actual