git_config_get_path

Get the value of a path config variable.

A leading '~' will be expanded to the global search path (which defaults to the user's home directory but can be overridden via git_libgit2_opts().

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.

extern (C) nothrow @nogc
int
git_config_get_path

Parameters

out_ libgit2_d.buffer.git_buf*

the buffer in which to store the result

cfg const(libgit2_d.types.git_config)*

where to look for the variable

name const(char)*

the variable's name

Return Value

Type: int

0 or an error code

Meta