git_config_delete_multivar

Deletes one or several entries from a multivar in the local config file.

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

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

Parameters

cfg libgit2_d.types.git_config*

where to look for the variables

name const(char)*

the variable's name

regexp const(char)*

a regular expression to indicate which values to delete

Return Value

Type: int

0 or an error code

Meta