summaryrefslogtreecommitdiff
path: root/src/config.h
blob: e2f301bf1805d6a95f34eaa9d63aa8e86d38c088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INCLUDE_config_h__
#define INCLUDE_config_h__

#include "git2.h"
#include "git2/config.h"
#include "vector.h"
#include "repository.h"

#define GIT_CONFIG_FILENAME ".gitconfig"
#define GIT_CONFIG_FILENAME_INREPO "config"

struct git_config {
	git_vector files;
	git_repository *repo;
};

#endif