diff options
| author | Junio C Hamano <gitster@pobox.com> | 2021-03-22 14:00:23 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2021-03-22 14:00:23 -0700 |
| commit | d20fa3cf9dba095b9d8836b177da697425ce8d3c (patch) | |
| tree | 9f38a2d833c4d96919960fb0979837e816919227 /t/t5318-commit-graph.sh | |
| parent | Merge branch 'ab/remote-write-config-in-camel-case' (diff) | |
| parent | commit-graph: use config to specify generation type (diff) | |
| download | git-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-x | t/t5318-commit-graph.sh | 2 |
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 ' |
