Skip to content

Commit 8c30be9

Browse files
Cheskaqiqigitster
authored andcommitted
diff-files: integrate with sparse index
Remove full index requirement for `git diff-files`. Refactor the ensure_expanded and ensure_not_expanded functions by introducing a common helper function, ensure_index_state. Add test to ensure the index is no expanded in `git diff-files`. The `p2000` tests demonstrate a ~96% execution time reduction for 'git diff-files' and a ~97% execution time reduction for 'git diff-files' for a file using a sparse index: Test before after ----------------------------------------------------------------------- 2000.94: git diff-files (full-v3) 0.09 0.08 -11.1% 2000.95: git diff-files (full-v4) 0.09 0.09 +0.0% 2000.96: git diff-files (sparse-v3) 0.52 0.02 -96.2% 2000.97: git diff-files (sparse-v4) 0.51 0.02 -96.1% 2000.98: git diff-files -- f2/f4/a (full-v3) 0.06 0.07 +16.7% 2000.99: git diff-files -- f2/f4/a (full-v4) 0.08 0.08 +0.0% 2000.100: git diff-files -- f2/f4/a (sparse-v3) 0.46 0.01 -97.8% 2000.101: git diff-files -- f2/f4/a (sparse-v4) 0.51 0.02 -96.1% Signed-off-by: Shuqi Liang <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0aba1a9 commit 8c30be9

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

builtin/diff-files.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ int cmd_diff_files(int argc, const char **argv, const char *prefix)
2727
usage(diff_files_usage);
2828

2929
git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
30+
31+
prepare_repo_settings(the_repository);
32+
the_repository->settings.command_requires_full_index = 0;
33+
3034
repo_init_revisions(the_repository, &rev, prefix);
3135
rev.abbrev = 0;
3236

t/perf/p2000-sparse-operations.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,7 @@ test_perf_on_all git grep --cached bogus -- "f2/f1/f1/*"
129129
test_perf_on_all git write-tree
130130
test_perf_on_all git describe --dirty
131131
test_perf_on_all 'echo >>new && git describe --dirty'
132+
test_perf_on_all git diff-files
133+
test_perf_on_all git diff-files -- $SPARSE_CONE/a
132134

133135
test_done

t/t1092-sparse-checkout-compatibility.sh

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,7 +1377,7 @@ test_expect_success 'index.sparse disabled inline uses full index' '
13771377
! test_region index ensure_full_index trace2.txt
13781378
'
13791379

1380-
ensure_not_expanded () {
1380+
run_sparse_index_trace2 () {
13811381
rm -f trace2.txt &&
13821382
if test -z "$WITHOUT_UNTRACKED_TXT"
13831383
then
@@ -1397,7 +1397,16 @@ ensure_not_expanded () {
13971397
git -C sparse-index "$@" \
13981398
>sparse-index-out \
13991399
2>sparse-index-error || return 1
1400-
fi &&
1400+
fi
1401+
}
1402+
1403+
ensure_expanded () {
1404+
run_sparse_index_trace2 "$@" &&
1405+
test_region index ensure_full_index trace2.txt
1406+
}
1407+
1408+
ensure_not_expanded () {
1409+
run_sparse_index_trace2 "$@" &&
14011410
test_region ! index ensure_full_index trace2.txt
14021411
}
14031412

@@ -2147,4 +2156,18 @@ test_expect_success 'diff-files with pathspec outside sparse definition' '
21472156
test_all_match git diff-files -- "folder*/a"
21482157
'
21492158

2159+
test_expect_success 'sparse index is not expanded: diff-files' '
2160+
init_repos &&
2161+
2162+
write_script edit-contents <<-\EOF &&
2163+
echo text >>"$1"
2164+
EOF
2165+
2166+
run_on_all ../edit-contents deep/a &&
2167+
2168+
ensure_not_expanded diff-files &&
2169+
ensure_not_expanded diff-files -- deep/a &&
2170+
ensure_not_expanded diff-files -- "deep/*"
2171+
'
2172+
21502173
test_done

0 commit comments

Comments
 (0)