3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='git-update-index --again test.
11 test_expect_success
'update-index --add' \
12 'echo hello world >file1 &&
13 echo goodbye people >file2 &&
14 git-update-index --add file1 file2 &&
15 git-ls-files -s >current &&
17 100644 3b18e512dba79e4c8300dd08aeb37f8e728b8dad 0 file1
18 100644 9db8893856a8a02eaa73470054b7c1c5a7c82e47 0 file2
21 test_expect_success
'update-index --again' \
23 echo hello everybody >file2 &&
24 if git-update-index --again
26 echo should have refused to remove file1
29 echo happy - failed as expected
31 git-ls-files -s >current &&
33 100644 3b18e512dba79e4c8300dd08aeb37f8e728b8dad 0 file1
34 100644 9db8893856a8a02eaa73470054b7c1c5a7c82e47 0 file2
37 test_expect_success
'update-index --remove --again' \
38 'git-update-index --remove --again &&
39 git-ls-files -s >current &&
41 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f 0 file2
44 test_expect_success
'first commit' 'git-commit -m initial'
46 test_expect_success
'update-index again' \
48 echo hello world >dir1/file3 &&
49 echo goodbye people >file2 &&
50 git-update-index --add file2 dir1/file3 &&
51 echo hello everybody >file2
52 echo happy >dir1/file3 &&
53 git-update-index --again &&
54 git-ls-files -s >current &&
56 100644 53ab446c3f4e42ce9bb728a0ccb283a101be4979 0 dir1/file3
57 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f 0 file2
60 test_expect_success
'update-index --update from subdir' \
61 'echo not so happy >file2 &&
63 cat ../file2 >file3 &&
64 git-update-index --again &&
66 git-ls-files -s >current &&
68 100644 d7fb3f695f06c759dbf3ab00046e7cc2da22d10f 0 dir1/file3
69 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f 0 file2
72 test_expect_success
'update-index --update with pathspec' \
73 'echo very happy >file2 &&
74 cat file2 >dir1/file3 &&
75 git-update-index --again dir1/ &&
76 git-ls-files -s >current &&
78 100644 594fb5bb1759d90998e2bf2a38261ae8e243c760 0 dir1/file3
79 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f 0 file2