aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-03-11 17:37:03 -0500
committerJunio C Hamano <gitster@pobox.com>2016-03-11 15:02:23 -0800
commit801818680ab907abf347fbdc48623f43a49beee9 (patch)
treee466ddf8d2dcb815e3ffce5084638ec9810c3893 /Documentation
parent21627f9b6ddddfeb40a53e116459a86be0520a4e (diff)
downloadgit-801818680ab907abf347fbdc48623f43a49beee9.tar.gz
git-801818680ab907abf347fbdc48623f43a49beee9.tar.xz
config: drop git_config_early
There are no more callers, and it's a rather confusing interface. This could just be folded into git_config_with_options(), but for the sake of readability, we'll leave it as a separate (static) helper function. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/technical/api-config.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/Documentation/technical/api-config.txt b/Documentation/technical/api-config.txt
index 0d8b99b36..20741f345 100644
--- a/Documentation/technical/api-config.txt
+++ b/Documentation/technical/api-config.txt
@@ -63,13 +63,6 @@ parse for configuration, rather than looking in the usual files. Regular
Specify whether include directives should be followed in parsed files.
Regular `git_config` defaults to `1`.
-There is a special version of `git_config` called `git_config_early`.
-This version takes an additional parameter to specify the repository
-config, instead of having it looked up via `git_path`. This is useful
-early in a Git program before the repository has been found. Unless
-you're working with early setup code, you probably don't want to use
-this.
-
Reading Specific Files
----------------------