Git 2.48
[git/gitster.git] / Documentation / config / commitgraph.txt
blob7f8c9d6638f1a1291522e07aac2bed321777d435
1 commitGraph.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.
7 commitGraph.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]).
11 commitGraph.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.)
16 commitGraph.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.
23 Defaults to -1.
25 If -1, Git will use the version of the changed-path Bloom filters in the
26 repository, defaulting to 1 if there are none.
28 If 0, Git will not read any Bloom filters, and will write version 1 Bloom
29 filters when instructed to write.
31 If 1, Git will only read version 1 Bloom filters, and will write version 1
32 Bloom filters.
34 If 2, Git will only read version 2 Bloom filters, and will write version 2
35 Bloom filters.
37 See linkgit:git-commit-graph[1] for more information.