mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-15 15:10:12 +00:00

"git_config_backend" have been renamed to "git_config_file", which implements a generic interface to access a configuration file -- be it either on disk, from a DB or whatever mumbojumbo. I think this makes more sense.
15 lines
211 B
C
15 lines
211 B
C
#ifndef INCLUDE_config_h__
|
|
#define INCLUDE_config_h__
|
|
|
|
#include "git2.h"
|
|
#include "git2/config.h"
|
|
#include "vector.h"
|
|
|
|
#define GIT_CONFIG_FILENAME ".gitconfig"
|
|
|
|
struct git_config {
|
|
git_vector files;
|
|
};
|
|
|
|
#endif
|