libgit2

git_config_get_multivar

Version:

Get each value of a multivar.

The callback will be called on each variable found

Signature

int git_config_get_multivar(const git_config *cfg, const char *name, const char *regexp, git_config_foreach_cb callback, void *payload);

Parameters

In
cfg

where to look for the variable

const char *
In
name

the variable's name

const char *
In
regexp

regular expression to filter which variables we're interested in. Use NULL to indicate all

In
callback
void *
In
payload

Returns

int

Versions