Git fork
1commitGraph.generationVersion::
2 Specifies the type of generation number version to use when writing
3 or reading the commit-graph file. If version 1 is specified, then
4 the corrected commit dates will not be written or read. Defaults to
5 2.
6
7commitGraph.maxNewFilters::
8 Specifies the default value for the `--max-new-filters` option of `git
9 commit-graph write` (c.f., linkgit:git-commit-graph[1]).
10
11commitGraph.readChangedPaths::
12 Deprecated. Equivalent to commitGraph.changedPathsVersion=-1 if true, and
13 commitGraph.changedPathsVersion=0 if false. (If commitGraph.changedPathVersion
14 is also set, commitGraph.changedPathsVersion takes precedence.)
15
16commitGraph.changedPathsVersion::
17 Specifies the version of the changed-path Bloom filters that Git will read and
18 write. May be -1, 0, 1, or 2. Note that values greater than 1 may be
19 incompatible with older versions of Git which do not yet understand
20 those versions. Use caution when operating in a mixed-version
21 environment.
22+
23Defaults to -1.
24+
25If -1, Git will use the version of the changed-path Bloom filters in the
26repository, defaulting to 1 if there are none.
27+
28If 0, Git will not read any Bloom filters, and will write version 1 Bloom
29filters when instructed to write.
30+
31If 1, Git will only read version 1 Bloom filters, and will write version 1
32Bloom filters.
33+
34If 2, Git will only read version 2 Bloom filters, and will write version 2
35Bloom filters.
36+
37See linkgit:git-commit-graph[1] for more information.