git_config_set_multivar

Set a multivar in the local config file.

The regular expression is applied case-sensitively on the value.

extern (C) nothrow @nogc
int
git_config_set_multivar
(,
const(char)* name
,
const(char)* regexp
,
const(char)* value
)

Parameters

cfg libgit2_d.types.git_config*

where to look for the variable

name const(char)*

the variable's name

regexp const(char)*

a regular expression to indicate which values to replace

value const(char)*

the new value.

Meta