aboutsummaryrefslogtreecommitdiffstats
path: root/t/t5318-commit-graph.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-03-22 14:00:23 -0700
committerJunio C Hamano <gitster@pobox.com>2021-03-22 14:00:23 -0700
commitd20fa3cf9dba095b9d8836b177da697425ce8d3c (patch)
tree9f38a2d833c4d96919960fb0979837e816919227 /t/t5318-commit-graph.sh
parentMerge branch 'ab/remote-write-config-in-camel-case' (diff)
parentcommit-graph: use config to specify generation type (diff)
downloadgit-d20fa3cf9dba095b9d8836b177da697425ce8d3c.tar.gz
git-d20fa3cf9dba095b9d8836b177da697425ce8d3c.zip
Merge branch 'ds/commit-graph-generation-config'
A new configuration variable has been introduced to allow choosing which version of the generation number gets used in the commit-graph file. * ds/commit-graph-generation-config: commit-graph: use config to specify generation type commit-graph: create local repository pointer
Diffstat (limited to 't/t5318-commit-graph.sh')
-rwxr-xr-xt/t5318-commit-graph.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5318-commit-graph.sh b/t/t5318-commit-graph.sh
index edeb6d6d31..af88f805aa 100755
--- a/t/t5318-commit-graph.sh
+++ b/t/t5318-commit-graph.sh
@@ -475,7 +475,7 @@ test_expect_success 'lower layers have overflow chunk' '
test_expect_success 'git commit-graph verify' '
cd "$TRASH_DIRECTORY/full" &&
- git rev-parse commits/8 | GIT_TEST_COMMIT_GRAPH_NO_GDAT=1 git commit-graph write --stdin-commits &&
+ git rev-parse commits/8 | git -c commitGraph.generationVersion=1 commit-graph write --stdin-commits &&
git commit-graph verify >output &&
graph_read_expect 9 extra_edges
'