aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2024-07-18 08:30:26 -0700
committerJunio C Hamano <gitster@pobox.com>2024-07-18 08:30:26 -0700
commitca12618b7bd52e98d96bf1c317f5bc9d8fe34963 (patch)
treef11e45a6d497342f87f40432ddce7d2f98c6a9e7
parentMerge branch 'ch/refs-without-the-repository-fix' (diff)
parentDocumentation: fix default value for core.maxTreeDepth (diff)
downloadgit-ca12618b7bd52e98d96bf1c317f5bc9d8fe34963.tar.gz
git-ca12618b7bd52e98d96bf1c317f5bc9d8fe34963.zip
Merge branch 'tb/doc-max-tree-depth-fix'
Doc update. * tb/doc-max-tree-depth-fix: Documentation: fix default value for core.maxTreeDepth
Diffstat (limited to '')
-rw-r--r--Documentation/config/core.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/config/core.txt b/Documentation/config/core.txt
index 93d65e1dfd..60ca9f2b68 100644
--- a/Documentation/config/core.txt
+++ b/Documentation/config/core.txt
@@ -756,4 +756,5 @@ core.maxTreeDepth::
The maximum depth Git is willing to recurse while traversing a
tree (e.g., "a/b/cde/f" has a depth of 4). This is a fail-safe
to allow Git to abort cleanly, and should not generally need to
- be adjusted. The default is 4096.
+ be adjusted. When Git is compiled with MSVC, the default is 512.
+ Otherwise, the default is 2048.