config: convert multi_replace to flags
commit504ee1290e38fb1ff0d76f940b124e21ab57a99f
authorDerrick Stolee <dstolee@microsoft.com>
Wed, 25 Nov 2020 22:12:49 +0000 (25 22:12 +0000)
committerJunio C Hamano <gitster@pobox.com>
Wed, 25 Nov 2020 22:43:47 +0000 (25 14:43 -0800)
tree804987ae0314b8243a4ec1c7d84e7dc6dbb2dd3b
parentfaefdd61ec7c7f6f3c8c9907891465ac9a2a1475
config: convert multi_replace to flags

We will extend the flexibility of the config API. Before doing so, let's
take an existing 'int multi_replace' parameter and replace it with a new
'unsigned flags' parameter that can take multiple options as a bit field.

Update all callers that specified multi_replace to now specify the
CONFIG_FLAGS_MULTI_REPLACE flag. To add more clarity, extend the
documentation of git_config_set_multivar_in_file() including a clear
labeling of its arguments. Other config API methods in config.h require
only a change of the final parameter from 'int' to 'unsigned'.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/branch.c
builtin/config.c
builtin/remote.c
config.c
config.h