3 # Copyright (c) 2006 Carl D. Worth
6 test_description
='Test of git add, including the -- option.'
12 'touch foo && git add foo'
15 'Post-check that foo is in the index' \
16 'git ls-files foo | grep foo'
19 'Test that "git add -- -q" works' \
20 'touch -- -q && git add -- -q'
23 'git add: Test that executable bit is not used if core.filemode=0' \
24 'git config core.filemode 0 &&
28 case "`git ls-files --stage xfoo1`" in
29 100644" "*xfoo1) echo ok;;
30 *) echo fail; git ls-files --stage xfoo1; (exit 1);;
33 test "$no_symlinks" ||
{
34 test_expect_success
'git add: filemode=0 should not get confused by symlink' '
38 case "`git ls-files --stage xfoo1`" in
39 120000" "*xfoo1) echo ok;;
40 *) echo fail; git ls-files --stage xfoo1; (exit 1);;
46 'git update-index --add: Test that executable bit is not used...' \
47 'git config core.filemode 0 &&
50 git update-index --add xfoo2 &&
51 case "`git ls-files --stage xfoo2`" in
52 100644" "*xfoo2) echo ok;;
53 *) echo fail; git ls-files --stage xfoo2; (exit 1);;
56 test "$no_symlinks" ||
{
57 test_expect_success
'git add: filemode=0 should not get confused by symlink' '
60 git update-index --add xfoo2 &&
61 case "`git ls-files --stage xfoo2`" in
62 120000" "*xfoo2) echo ok;;
63 *) echo fail; git ls-files --stage xfoo2; (exit 1);;
68 'git update-index --add: Test that executable bit is not used...' \
69 'git config core.filemode 0 &&
71 git update-index --add xfoo3 &&
72 case "`git ls-files --stage xfoo3`" in
73 120000" "*xfoo3) echo ok;;
74 *) echo fail; git ls-files --stage xfoo3; (exit 1);;
78 test_expect_success
'.gitignore test setup' '
79 echo "*.ig" >.gitignore &&
82 >c.if/c.if && >c.if/c.ig &&
83 >d.ig/d.if && >d.ig/d.ig
86 test_expect_success
'.gitignore is honored' '
88 ! (git ls-files | grep "\\.ig")
91 test_expect_success
'error out when attempting to add ignored ones without -f' '
93 ! (git ls-files | grep "\\.ig")
96 test_expect_success
'error out when attempting to add ignored ones without -f' '
98 ! (git ls-files | grep "\\.ig")
101 test_expect_success
'add ignored ones with -f' '
103 git ls-files --error-unmatch a.ig
106 test_expect_success
'add ignored ones with -f' '
108 git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
111 test_expect_success
'add ignored ones with -f' '
114 git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
117 test_expect_success
'.gitignore with subdirectory' '
121 echo "!dir/a.*" >sub/.gitignore &&
125 git ls-files --error-unmatch sub/dir/a.ig &&
131 git ls-files --error-unmatch sub/dir/a.ig
135 touch 1/2/a
1/3/b
1/2/c
136 test_expect_success
'check correct prefix detection' '
138 git add 1/2/a 1/3/b 1/2/c
141 test_expect_success
'git add with filemode=0, symlinks=0, and unmerged entries' '
145 echo "100755 $(git hash-object -w stage$s) $s file"
146 echo "120000 $(printf $s | git hash-object -w -t blob --stdin) $s symlink"
147 done | git update-index --index-info &&
148 git config core.filemode 0 &&
149 git config core.symlinks 0 &&
151 echo new > symlink &&
152 git add file symlink &&
153 git ls-files --stage | grep "^100755 .* 0 file$" &&
154 git ls-files --stage | grep "^120000 .* 0 symlink$"
157 test_expect_success
'git add with filemode=0, symlinks=0 prefers stage 2 over stage 1' '
158 git rm --cached -f file symlink &&
160 echo "100644 $(git hash-object -w stage1) 1 file"
161 echo "100755 $(git hash-object -w stage2) 2 file"
162 echo "100644 $(printf 1 | git hash-object -w -t blob --stdin) 1 symlink"
163 echo "120000 $(printf 2 | git hash-object -w -t blob --stdin) 2 symlink"
164 ) | git update-index --index-info &&
165 git config core.filemode 0 &&
166 git config core.symlinks 0 &&
168 echo new > symlink &&
169 git add file symlink &&
170 git ls-files --stage | grep "^100755 .* 0 file$" &&
171 git ls-files --stage | grep "^120000 .* 0 symlink$"
174 test_expect_success
'git add --refresh' '
175 >foo && git add foo && git commit -a -m "commit all" &&
176 test -z "`git diff-index HEAD -- foo`" &&
177 git read-tree HEAD &&
178 case "`git diff-index HEAD -- foo`" in
179 :100644" "*"M foo") echo ok;;
180 *) echo fail; (exit 1);;
182 git add --refresh -- foo &&
183 test -z "`git diff-index HEAD -- foo`"
186 test_expect_success
'git add should fail atomically upon an unreadable file' '
191 test_must_fail git add --verbose . &&
192 ! ( git ls-files foo1 | grep foo1 )
197 test_expect_success
'git add --ignore-errors' '
202 test_must_fail git add --verbose --ignore-errors . &&
203 git ls-files foo1 | grep foo1
208 test_expect_success
'git add (add.ignore-errors)' '
209 git config add.ignore-errors 1 &&
214 test_must_fail git add --verbose . &&
215 git ls-files foo1 | grep foo1
219 test_expect_success
'git add (add.ignore-errors = false)' '
220 git config add.ignore-errors 0 &&
225 test_must_fail git add --verbose . &&
226 ! ( git ls-files foo1 | grep foo1 )