libgit2

git_config_get_string_buf

Version:

Get the value of a string config variable.

The value of the config will be copied into the buffer.

All config files will be looked into, in the order of their defined level. A higher level means a higher priority. The first occurrence of the variable will be returned here.

Signature

int git_config_get_string_buf(git_buf *out, const git_config *cfg, const char *name);

Parameters

In
out

buffer in which to store the string

In
cfg

where to look for the variable

const char *
In
name

the variable's name

Returns

int

0 or an error code

Versions