3 # Copyright (c) 2006 Carl D. Worth
6 test_description
='Test of git add, including the -- option.'
10 # Test the file mode "$1" of the file "$2" in the index.
11 test_mode_in_index
() {
12 case "$(git ls-files -s "$2")" in
26 'touch foo && git add foo'
29 'Post-check that foo is in the index' \
30 'git ls-files foo | grep foo'
33 'Test that "git add -- -q" works' \
34 'touch -- -q && git add -- -q'
37 'git add: Test that executable bit is not used if core.filemode=0' \
38 'git config core.filemode 0 &&
42 test_mode_in_index 100644 xfoo1'
44 test_expect_success
'git add: filemode=0 should not get confused by symlink' '
46 test_ln_s_add foo xfoo1 &&
47 test_mode_in_index 120000 xfoo1
51 'git update-index --add: Test that executable bit is not used...' \
52 'git config core.filemode 0 &&
55 git update-index --add xfoo2 &&
56 test_mode_in_index 100644 xfoo2'
58 test_expect_success
'git add: filemode=0 should not get confused by symlink' '
60 test_ln_s_add foo xfoo2 &&
61 test_mode_in_index 120000 xfoo2
65 'git update-index --add: Test that executable bit is not used...' \
66 'git config core.filemode 0 &&
67 test_ln_s_add xfoo2 xfoo3 && # runs git update-index --add
68 test_mode_in_index 120000 xfoo3'
70 test_expect_success
'.gitignore test setup' '
71 echo "*.ig" >.gitignore &&
74 >c.if/c.if && >c.if/c.ig &&
75 >d.ig/d.if && >d.ig/d.ig
78 test_expect_success
'.gitignore is honored' '
80 ! (git ls-files | grep "\\.ig")
83 test_expect_success
'error out when attempting to add ignored ones without -f' '
84 test_must_fail git add a.?? &&
85 ! (git ls-files | grep "\\.ig")
88 test_expect_success
'error out when attempting to add ignored ones without -f' '
89 test_must_fail git add d.?? &&
90 ! (git ls-files | grep "\\.ig")
93 test_expect_success
'error out when attempting to add ignored ones but add others' '
95 test_must_fail git add a.?? &&
96 ! (git ls-files | grep "\\.ig") &&
97 (git ls-files | grep a.if)
100 test_expect_success
'add ignored ones with -f' '
102 git ls-files --error-unmatch a.ig
105 test_expect_success
'add ignored ones with -f' '
107 git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
110 test_expect_success
'add ignored ones with -f' '
113 git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
116 test_expect_success
'.gitignore with subdirectory' '
120 echo "!dir/a.*" >sub/.gitignore &&
124 git ls-files --error-unmatch sub/dir/a.ig &&
130 git ls-files --error-unmatch sub/dir/a.ig
134 touch 1/2/a
1/3/b
1/2/c
135 test_expect_success
'check correct prefix detection' '
137 git add 1/2/a 1/3/b 1/2/c
140 test_expect_success
'git add with filemode=0, symlinks=0, and unmerged entries' '
144 echo "100755 $(git hash-object -w stage$s) $s file"
145 echo "120000 $(printf $s | git hash-object -w -t blob --stdin) $s symlink"
146 done | git update-index --index-info &&
147 git config core.filemode 0 &&
148 git config core.symlinks 0 &&
150 echo new > symlink &&
151 git add file symlink &&
152 git ls-files --stage | grep "^100755 .* 0 file$" &&
153 git ls-files --stage | grep "^120000 .* 0 symlink$"
156 test_expect_success
'git add with filemode=0, symlinks=0 prefers stage 2 over stage 1' '
157 git rm --cached -f file symlink &&
159 echo "100644 $(git hash-object -w stage1) 1 file" &&
160 echo "100755 $(git hash-object -w stage2) 2 file" &&
161 echo "100644 $(printf 1 | git hash-object -w -t blob --stdin) 1 symlink" &&
162 echo "120000 $(printf 2 | git hash-object -w -t blob --stdin) 2 symlink"
163 ) | git update-index --index-info &&
164 git config core.filemode 0 &&
165 git config core.symlinks 0 &&
167 echo new > symlink &&
168 git add file symlink &&
169 git ls-files --stage | grep "^100755 .* 0 file$" &&
170 git ls-files --stage | grep "^120000 .* 0 symlink$"
173 test_expect_success
'git add --refresh' '
174 >foo && git add foo && git commit -a -m "commit all" &&
175 test -z "$(git diff-index HEAD -- foo)" &&
176 git read-tree HEAD &&
177 case "$(git diff-index HEAD -- foo)" in
178 :100644" "*"M foo") echo pass;;
179 *) echo fail; (exit 1);;
181 git add --refresh -- foo &&
182 test -z "$(git diff-index HEAD -- foo)"
185 test_expect_success
'git add --refresh with pathspec' '
187 echo >foo && echo >bar && echo >baz &&
188 git add foo bar baz && H=$(git rev-parse :foo) && git rm -f foo &&
189 echo "100644 $H 3 foo" | git update-index --index-info &&
190 test-tool chmtime -60 bar baz &&
191 git add --refresh bar >actual &&
192 test_must_be_empty actual &&
194 git diff-files --name-only >actual &&
199 test_expect_success
'git add --refresh correctly reports no match error' "
200 echo \"fatal: pathspec ':(icase)nonexistent' did not match any files\" >expect &&
201 test_must_fail git add --refresh ':(icase)nonexistent' 2>actual &&
202 test_cmp expect actual
205 test_expect_success POSIXPERM
,SANITY
'git add should fail atomically upon an unreadable file' '
210 test_must_fail git add --verbose . &&
211 ! ( git ls-files foo1 | grep foo1 )
216 test_expect_success POSIXPERM
,SANITY
'git add --ignore-errors' '
221 test_must_fail git add --verbose --ignore-errors . &&
222 git ls-files foo1 | grep foo1
227 test_expect_success POSIXPERM
,SANITY
'git add (add.ignore-errors)' '
228 git config add.ignore-errors 1 &&
233 test_must_fail git add --verbose . &&
234 git ls-files foo1 | grep foo1
238 test_expect_success POSIXPERM
,SANITY
'git add (add.ignore-errors = false)' '
239 git config add.ignore-errors 0 &&
244 test_must_fail git add --verbose . &&
245 ! ( git ls-files foo1 | grep foo1 )
249 test_expect_success POSIXPERM
,SANITY
'--no-ignore-errors overrides config' '
250 git config add.ignore-errors 1 &&
255 test_must_fail git add --verbose --no-ignore-errors . &&
256 ! ( git ls-files foo1 | grep foo1 ) &&
257 git config add.ignore-errors 0
261 test_expect_success BSLASHPSPEC
"git add 'fo\\[ou\\]bar' ignores foobar" '
263 touch fo\[ou\]bar foobar &&
264 git add '\''fo\[ou\]bar'\'' &&
265 git ls-files fo\[ou\]bar | fgrep fo\[ou\]bar &&
266 ! ( git ls-files foobar | grep foobar )
269 test_expect_success
'git add to resolve conflicts on otherwise ignored path' '
271 H=$(git rev-parse :1/2/a) &&
273 echo "100644 $H 1 track-this" &&
274 echo "100644 $H 3 track-this"
275 ) | git update-index --index-info &&
276 echo track-this >>.gitignore &&
277 echo resolved >track-this &&
281 test_expect_success
'"add non-existent" should fail' '
282 test_must_fail git add non-existent &&
283 ! (git ls-files | grep "non-existent")
286 test_expect_success
'git add -A on empty repo does not error out' '
296 test_expect_success
'"git add ." in empty repo' '
305 test_expect_success
'error on a repository with no commits' '
308 test_must_fail git add empty >actual 2>&1 &&
309 cat >expect <<-EOF &&
310 error: '"'empty/'"' does not have a commit checked out
311 fatal: adding files failed
313 test_cmp expect actual
316 test_expect_success
'git add --dry-run of existing changed file' "
317 echo new >>track-this &&
318 git add --dry-run track-this >actual 2>&1 &&
319 echo \"add 'track-this'\" | test_cmp - actual
322 test_expect_success
'git add --dry-run of non-existing file' "
323 echo ignored-file >>.gitignore &&
324 test_must_fail git add --dry-run track-this ignored-file >actual 2>&1
327 test_expect_success
'git add --dry-run of an existing file output' "
328 echo \"fatal: pathspec 'ignored-file' did not match any files\" >expect &&
329 test_cmp expect actual
332 cat >expect.err
<<\EOF
333 The following paths are ignored by one of your .gitignore files
:
335 hint
: Use
-f if you really want to add them.
336 hint
: Turn this message off by running
337 hint
: "git config advice.addIgnoredFile false"
339 cat >expect.out
<<\EOF
343 test_expect_success
'git add --dry-run --ignore-missing of non-existing file' '
344 test_must_fail git add --dry-run --ignore-missing track-this ignored-file >actual.out 2>actual.err
347 test_expect_success
'git add --dry-run --ignore-missing of non-existing file output' '
348 test_cmp expect.out actual.out &&
349 test_cmp expect.err actual.err
352 test_expect_success
'git add --dry-run --interactive should fail' '
353 test_must_fail git add --dry-run --interactive
356 test_expect_success
'git add empty string should fail' '
357 test_must_fail git add ""
360 test_expect_success
'git add --chmod=[+-]x stages correctly' '
363 git add --chmod=+x foo1 &&
364 test_mode_in_index 100755 foo1 &&
365 git add --chmod=-x foo1 &&
366 test_mode_in_index 100644 foo1
369 test_expect_success POSIXPERM
,SYMLINKS
'git add --chmod=+x with symlinks' '
370 git config core.filemode 1 &&
371 git config core.symlinks 1 &&
374 git add --chmod=+x foo2 &&
375 test_mode_in_index 100755 foo2
378 test_expect_success
'git add --chmod=[+-]x changes index with already added file' '
383 git add --chmod=+x foo3 &&
384 test_mode_in_index 100755 foo3 &&
388 git add --chmod=-x xfoo3 &&
389 test_mode_in_index 100644 xfoo3
392 test_expect_success POSIXPERM
'git add --chmod=[+-]x does not change the working tree' '
395 git add --chmod=+x foo4 &&
399 test_expect_success
'git add --chmod fails with non regular files (but updates the other paths)' '
401 test_ln_s_add foo foo3 &&
403 test_must_fail git add --chmod=+x foo3 foo4 2>stderr &&
404 test_i18ngrep "cannot chmod +x .foo3." stderr &&
405 test_mode_in_index 120000 foo3 &&
406 test_mode_in_index 100755 foo4
409 test_expect_success
'git add --chmod honors --dry-run' '
413 git add --chmod=+x --dry-run foo4 &&
414 test_mode_in_index 100644 foo4
417 test_expect_success
'git add --chmod --dry-run reports error for non regular files' '
419 test_ln_s_add foo foo4 &&
420 test_must_fail git add --chmod=+x --dry-run foo4 2>stderr &&
421 test_i18ngrep "cannot chmod +x .foo4." stderr
424 test_expect_success
'git add --chmod --dry-run reports error for unmatched pathspec' '
425 test_must_fail git add --chmod=+x --dry-run nonexistent 2>stderr &&
426 test_i18ngrep "pathspec .nonexistent. did not match any files" stderr
429 test_expect_success
'no file status change if no pathspec is given' '
433 git add --chmod=+x &&
434 test_mode_in_index 100644 foo5 &&
435 test_mode_in_index 100644 foo6
438 test_expect_success
'no file status change if no pathspec is given in subdir' '
445 git add --chmod=+x &&
446 test_mode_in_index 100644 sub-foo1 &&
447 test_mode_in_index 100644 sub-foo2
451 test_expect_success
'all statuses changed in folder if . is given' '
456 touch x y z sub/a sub/dir/b &&
458 git add --chmod=+x . &&
459 test $(git ls-files --stage | grep ^100644 | wc -l) -eq 0 &&
460 git add --chmod=-x . &&
461 test $(git ls-files --stage | grep ^100755 | wc -l) -eq 0
465 test_expect_success CASE_INSENSITIVE_FS
'path is case-insensitive' '
466 path="$(pwd)/BLUB" &&
468 downcased="$(echo "$path" | tr A-Z a-z)" &&