config: add repo_config_set_worktree_gently()
commitfe18733927c1d28ffcec3b52908989c591bc7b87
authorDerrick Stolee <dstolee@microsoft.com>
Mon, 7 Feb 2022 21:33:00 +0000 (7 21:33 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 8 Feb 2022 17:49:20 +0000 (8 09:49 -0800)
tree2d26e45cb38e5bfe26a006cd8e83b8a4f015b168
parent615a84ad788b26260c5b053ace2d5720ea5f05c5
config: add repo_config_set_worktree_gently()

Some config settings, such as those for sparse-checkout, are likely
intended to only apply to one worktree at a time. To make this write
easier, add a new config API method, repo_config_set_worktree_gently().

This method will attempt to write to the worktree-specific config, but
will instead write to the common config file if worktree config is not
enabled.  The next change will introduce a consumer of this method.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c
config.h