@@ -55,7 +55,7 @@ test_expect_success 'setup repo and indexes' '
55
55
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . full-v3 &&
56
56
(
57
57
cd full-v3 &&
58
- git sparse-checkout init --cone &&
58
+ git sparse-checkout init --cone --no-sparse-index &&
59
59
git sparse-checkout set $SPARSE_CONE &&
60
60
git config index.version 3 &&
61
61
git update-index --index-version=3 &&
@@ -64,7 +64,7 @@ test_expect_success 'setup repo and indexes' '
64
64
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . full-v4 &&
65
65
(
66
66
cd full-v4 &&
67
- git sparse-checkout init --cone &&
67
+ git sparse-checkout init --cone --no-sparse-index &&
68
68
git sparse-checkout set $SPARSE_CONE &&
69
69
git config index.version 4 &&
70
70
git update-index --index-version=4 &&
@@ -110,5 +110,12 @@ test_perf_on_all git add -A
110
110
test_perf_on_all git add .
111
111
test_perf_on_all git commit -a -m A
112
112
test_perf_on_all git checkout -f -
113
+ test_perf_on_all git reset
114
+ test_perf_on_all git reset --hard
115
+ test_perf_on_all git reset -- does-not-exist
116
+ test_perf_on_all git update-index --add --remove
117
+ test_perf_on_all git diff
118
+ test_perf_on_all git diff --staged
119
+ test_perf_on_all git sparse-checkout reapply
113
120
114
121
test_done
0 commit comments