diff options
author | Jeff King <peff@peff.net> | 2016-03-11 17:37:03 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-11 15:02:23 -0800 |
commit | 801818680ab907abf347fbdc48623f43a49beee9 (patch) | |
tree | e466ddf8d2dcb815e3ffce5084638ec9810c3893 /cache.h | |
parent | 21627f9b6ddddfeb40a53e116459a86be0520a4e (diff) | |
download | git-801818680ab907abf347fbdc48623f43a49beee9.tar.gz |
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 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1535,7 +1535,6 @@ extern void git_config(config_fn_t fn, void *); extern int git_config_with_options(config_fn_t fn, void *, struct git_config_source *config_source, int respect_includes); -extern int git_config_early(config_fn_t fn, void *, const char *repo_config); extern int git_parse_ulong(const char *, unsigned long *); extern int git_parse_maybe_bool(const char *); extern int git_config_int(const char *, const char *); |