libgit2

git_config_find_xdg

Version:

Locate the path to the global xdg compatible configuration file

The xdg compatible configuration file is usually located in $HOME/.config/git/config.

This method will try to guess the full path to that file, if the file exists. The returned path may be used on any git_config call to load the xdg compatible configuration file.

Signature

int git_config_find_xdg(char *out, size_t length);

Parameters

char *
In
out

Buffer to store the path in

size_t
In
length

size of the buffer in bytes

Returns

int

0 if a xdg compatible configuration file has been found. Its path will be stored in buffer.

Versions