diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-05-20 02:58:33 +0300 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-05-20 02:58:33 +0300 |
commit | 8adbf2ed12b7067660a4012f54d76650663edee1 (patch) | |
tree | fab3915f0b1c1bb13d202387f6aa5263e1015a7c /src/config.h | |
parent | 274f2c213fdb2402b586827e6e6e27b2e055101c (diff) | |
download | libgit2-8adbf2ed12b7067660a4012f54d76650663edee1.tar.gz |
Rewrite `git_config_open_global`
We have a lot of utility methods that make path building trivial. Use
them!
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index a811fd850..104e01633 100644 --- a/src/config.h +++ b/src/config.h @@ -5,6 +5,8 @@ #include "git2/config.h" #include "vector.h" +#define GIT_CONFIG_FILENAME ".gitconfig" + struct git_config { git_vector backends; }; |