Hash : b22d1479 Author : Date : 2011-06-16T17:46:06
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef INCLUDE_config_h__ #define INCLUDE_config_h__ #include "git2.h" #include "git2/config.h" #include "vector.h" #define GIT_CONFIG_FILENAME ".gitconfig" #define GIT_CONFIG_FILENAME_INREPO "config" struct git_config { git_vector files; }; #endif