]> git.ipfire.org Git - thirdparty/git.git/commit - config.c
config: don't implicitly use gitdir or commondir
authorBrandon Williams <bmwill@google.com>
Wed, 14 Jun 2017 18:07:39 +0000 (11:07 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 15 Jun 2017 19:56:22 +0000 (12:56 -0700)
commitdc8441fdb4598f54865a5c783d1f86c1e0bcb6dc
tree176279ca26cbd437316f434c609cd853eebca2a8
parenta577fb5fdc53a4729eeedc2922d1461350b92f73
config: don't implicitly use gitdir or commondir

'git_config_with_options()' takes a 'config_options' struct which
contains feilds for 'git_dir' and 'commondir'.  If those feilds happen
to be NULL the config machinery falls back to querying global repository
state.  Let's change this and instead use these fields in the
'config_options' struct explicilty all the time.  Since the API is
slightly changing to require these two fields to be set if callers want
the config machinery to load the repository's config, let's change the
name to 'config_with_optison()'.  This allows the config machinery to
not implicitly rely on any global repository state.

Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/config.c
config.c
config.h