git_config_open_global

Open the global/XDG configuration file according to git's rules

Git allows you to store your global configuration at $HOME/.gitconfig or $XDG_CONFIG_HOME/git/config. For backwards compatability, the XDG file shouldn't be used unless the use has created it explicitly. With this function you'll open the correct one to write to.

extern (C) nothrow @nogc
int
git_config_open_global

Parameters

out_ libgit2_d.types.git_config**

pointer in which to store the config object

config libgit2_d.types.git_config*

the config object in which to look

Meta