3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='git update-index --again test.
12 100644 3b18e512dba79e4c8300dd08aeb37f8e728b8dad
0 file1
13 100644 9db8893856a8a02eaa73470054b7c1c5a7c82e47
0 file2
15 test_expect_success
'update-index --add' \
16 'echo hello world >file1 &&
17 echo goodbye people >file2 &&
18 git update-index --add file1 file2 &&
19 git ls-files -s >current &&
22 test_expect_success
'update-index --again' \
24 echo hello everybody >file2 &&
25 if git update-index --again
27 echo should have refused to remove file1
30 echo happy - failed as expected
32 git ls-files -s >current &&
36 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f
0 file2
38 test_expect_success
'update-index --remove --again' \
39 'git update-index --remove --again &&
40 git ls-files -s >current &&
43 test_expect_success
'first commit' 'git-commit -m initial'
46 100644 53ab446c3f4e42ce9bb728a0ccb283a101be4979
0 dir
1/file3
47 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f
0 file2
49 test_expect_success
'update-index again' \
51 echo hello world >dir1/file3 &&
52 echo goodbye people >file2 &&
53 git update-index --add file2 dir1/file3 &&
54 echo hello everybody >file2
55 echo happy >dir1/file3 &&
56 git update-index --again &&
57 git ls-files -s >current &&
61 100644 d7fb3f695f06c759dbf3ab00046e7cc2da22d10f
0 dir
1/file3
62 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f
0 file2
64 test_expect_success
'update-index --update from subdir' \
65 'echo not so happy >file2 &&
67 cat ../file2 >file3 &&
68 git update-index --again &&
70 git ls-files -s >current &&
74 100644 594fb5bb1759d90998e2bf2a38261ae8e243c760
0 dir
1/file3
75 100644 0f1ae1422c2bf43f117d3dbd715c988a9ed2103f
0 file2
77 test_expect_success
'update-index --update with pathspec' \
78 'echo very happy >file2 &&
79 cat file2 >dir1/file3 &&
80 git update-index --again dir1/ &&
81 git ls-files -s >current &&