Get each value of a multivar.
The callback will be called on each variable found
int git_config_get_multivar(const git_config *cfg, const char *name, const char *regexp, git_config_foreach_cb callback, void *payload);
In
cfg
where to look for the variable
const char *
In
regexp
regular expression to filter which variables we're interested in. Use NULL to indicate all
In
callback
the function to be called on each value of the variable
void *
In
payload
opaque pointer to pass to the callback