2 * We put all the git config variables in this same object
3 * file, so that programs can link against the config parser
4 * without having to link against all the rest of git.
6 * In particular, no need to bring in libz etc unless needed,
7 * even if you might want to know where the git directory etc
12 char git_default_email
[MAX_GITNAME
];
13 char git_default_name
[MAX_GITNAME
];
14 int trust_executable_bit
= 1;
15 int assume_unchanged
= 0;
16 int only_use_symrefs
= 0;
17 int repository_format_version
= 0;
18 char git_commit_encoding
[MAX_ENCODING_LENGTH
] = "utf-8";
19 int shared_repository
= 0;
20 const char *apply_default_whitespace
= NULL
;
22 static char *git_dir
, *git_object_dir
, *git_index_file
, *git_refs_dir
,
24 static void setup_git_env(void)
26 git_dir
= getenv(GIT_DIR_ENVIRONMENT
);
28 git_dir
= DEFAULT_GIT_DIR_ENVIRONMENT
;
29 git_object_dir
= getenv(DB_ENVIRONMENT
);
30 if (!git_object_dir
) {
31 git_object_dir
= xmalloc(strlen(git_dir
) + 9);
32 sprintf(git_object_dir
, "%s/objects", git_dir
);
34 git_refs_dir
= xmalloc(strlen(git_dir
) + 6);
35 sprintf(git_refs_dir
, "%s/refs", git_dir
);
36 git_index_file
= getenv(INDEX_ENVIRONMENT
);
37 if (!git_index_file
) {
38 git_index_file
= xmalloc(strlen(git_dir
) + 7);
39 sprintf(git_index_file
, "%s/index", git_dir
);
41 git_graft_file
= getenv(GRAFT_ENVIRONMENT
);
43 git_graft_file
= strdup(git_path("info/grafts"));
46 char *get_git_dir(void)
53 char *get_object_directory(void)
57 return git_object_dir
;
60 char *get_refs_directory(void)
67 char *get_index_file(void)
71 return git_index_file
;
74 char *get_graft_file(void)
78 return git_graft_file
;