]>
Commit | Line | Data |
---|---|---|
e1b10391 LT |
1 | /* |
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. | |
5 | * | |
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 | |
8 | * are. | |
9 | */ | |
10 | #include "cache.h" | |
e730b81d | 11 | #include "branch.h" |
c14c234f | 12 | #include "repository.h" |
b2141fc1 | 13 | #include "config.h" |
a1bea2c1 | 14 | #include "refs.h" |
273c7032 | 15 | #include "fmt-merge-msg.h" |
069c0532 | 16 | #include "commit.h" |
357a03eb | 17 | #include "argv-array.h" |
90c62155 | 18 | #include "object-store.h" |
8500e0de | 19 | #include "chdir-notify.h" |
e1b10391 | 20 | |
e1b10391 | 21 | int trust_executable_bit = 1; |
1ce4790b | 22 | int trust_ctime = 1; |
c08e4d5b | 23 | int check_stat = 1; |
78a8d641 | 24 | int has_symlinks = 1; |
e6c587c7 | 25 | int minimum_abbrev = 4, default_abbrev = -1; |
0a9b88b7 | 26 | int ignore_case; |
96f1e58f DR |
27 | int assume_unchanged; |
28 | int prefer_symlink_refs; | |
7d1864ce | 29 | int is_bare_repository_cfg = -1; /* unspecified */ |
1b371f56 | 30 | int warn_ambiguous_refs = 1; |
25fba78d | 31 | int warn_on_object_refname_ambiguity = 1; |
49672f26 | 32 | int ref_paranoia = -1; |
067fbd41 | 33 | int repository_format_precious_objects; |
75b97fec | 34 | char *repository_format_partial_clone; |
1e1e39b3 | 35 | const char *core_partial_clone_filter_default; |
1a8f2741 | 36 | const char *git_commit_encoding; |
3a55602e | 37 | const char *git_log_output_encoding; |
96f1e58f | 38 | const char *apply_default_whitespace; |
86c91f91 | 39 | const char *apply_default_ignorewhitespace; |
64589a03 | 40 | const char *git_attributes_file; |
867ad08a | 41 | const char *git_hooks_path; |
960ccca6 DH |
42 | int zlib_compression_level = Z_BEST_SPEED; |
43 | int core_compression_level; | |
8de7eeb5 | 44 | int pack_compression_level = Z_DEFAULT_COMPRESSION; |
aafe9fba | 45 | int fsync_object_files; |
8c82534d SP |
46 | size_t packed_git_window_size = DEFAULT_PACKED_GIT_WINDOW_SIZE; |
47 | size_t packed_git_limit = DEFAULT_PACKED_GIT_LIMIT; | |
4874f544 | 48 | size_t delta_base_cache_limit = 96 * 1024 * 1024; |
15366280 | 49 | unsigned long big_file_threshold = 512 * 1024 * 1024; |
aa086eb8 | 50 | int pager_use_color = 1; |
ee9601e6 | 51 | const char *editor_program; |
d3e7da89 | 52 | const char *askpass_program; |
dfb068be | 53 | const char *excludes_file; |
fd6cce9e | 54 | enum auto_crlf auto_crlf = AUTO_CRLF_FALSE; |
6ebd1caf | 55 | int read_replace_refs = 1; |
58d121b2 | 56 | char *git_replace_ref_base; |
ec70f52f | 57 | enum eol core_eol = EOL_UNSET; |
8462ff43 | 58 | int global_conv_flags_eol = CONV_EOL_RNDTRP_WARN; |
e92d6225 | 59 | char *check_roundtrip_encoding = "SHIFT-JIS"; |
cf1b7869 | 60 | unsigned whitespace_rule_cfg = WS_DEFAULT_RULE; |
9ed36cfa | 61 | enum branch_track git_branch_track = BRANCH_TRACK_REMOTE; |
c998ae9b | 62 | enum rebase_setup_type autorebase = AUTOREBASE_NEVER; |
f25950f3 | 63 | enum push_default_type push_default = PUSH_DEFAULT_UNSPECIFIED; |
348df166 JS |
64 | #ifndef OBJECT_CREATION_MODE |
65 | #define OBJECT_CREATION_MODE OBJECT_CREATION_USES_HARDLINKS | |
be66a6c4 | 66 | #endif |
348df166 | 67 | enum object_creation_mode object_creation_mode = OBJECT_CREATION_MODE; |
a97a7468 | 68 | char *notes_ref_name; |
7f3140cd | 69 | int grafts_replace_parents = 1; |
08aefc9e | 70 | int core_apply_sparse_checkout; |
898eacd8 | 71 | int merge_log_config = -1; |
76759c7d | 72 | int precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */ |
568508e7 | 73 | unsigned long pack_size_limit_cfg; |
f30afdab | 74 | enum hide_dotfiles_type hide_dotfiles = HIDE_DOTFILES_DOTGITONLY; |
341fb286 | 75 | enum log_refs_config log_all_ref_updates = LOG_REFS_UNSET; |
e1b10391 | 76 | |
a42643aa JK |
77 | #ifndef PROTECT_HFS_DEFAULT |
78 | #define PROTECT_HFS_DEFAULT 0 | |
79 | #endif | |
80 | int protect_hfs = PROTECT_HFS_DEFAULT; | |
81 | ||
2b4c6efc JS |
82 | #ifndef PROTECT_NTFS_DEFAULT |
83 | #define PROTECT_NTFS_DEFAULT 0 | |
84 | #endif | |
85 | int protect_ntfs = PROTECT_NTFS_DEFAULT; | |
883e248b | 86 | const char *core_fsmonitor; |
2b4c6efc | 87 | |
eff80a9f JH |
88 | /* |
89 | * The character that begins a commented line in user-editable file | |
90 | * that is subject to stripspace. | |
91 | */ | |
92 | char comment_line_char = '#'; | |
84c9dc2c | 93 | int auto_comment_line_char; |
eff80a9f | 94 | |
671c9b7e | 95 | /* Parallel index stat data preload? */ |
299e2987 | 96 | int core_preload_index = 1; |
671c9b7e | 97 | |
dae6c322 CC |
98 | /* |
99 | * This is a hack for test programs like test-dump-untracked-cache to | |
100 | * ensure that they do not modify the untracked cache when reading it. | |
101 | * Do not use it otherwise! | |
102 | */ | |
103 | int ignore_untracked_cache_config; | |
104 | ||
e90fdc39 JS |
105 | /* This is set by setup_git_dir_gently() and/or git_default_config() */ |
106 | char *git_work_tree_cfg; | |
e90fdc39 | 107 | |
38f3f094 | 108 | static char *git_namespace; |
a1bea2c1 | 109 | |
74866d75 BW |
110 | static const char *super_prefix; |
111 | ||
48a7c1c4 | 112 | /* |
2163e5db | 113 | * Repository-local GIT_* environment variables; see cache.h for details. |
48a7c1c4 | 114 | */ |
2163e5db | 115 | const char * const local_repo_env[] = { |
48a7c1c4 GB |
116 | ALTERNATE_DB_ENVIRONMENT, |
117 | CONFIG_ENVIRONMENT, | |
655e8d9c | 118 | CONFIG_DATA_ENVIRONMENT, |
48a7c1c4 GB |
119 | DB_ENVIRONMENT, |
120 | GIT_DIR_ENVIRONMENT, | |
121 | GIT_WORK_TREE_ENVIRONMENT, | |
2cd83d10 | 122 | GIT_IMPLICIT_WORK_TREE_ENVIRONMENT, |
48a7c1c4 GB |
123 | GRAFT_ENVIRONMENT, |
124 | INDEX_ENVIRONMENT, | |
125 | NO_REPLACE_OBJECTS_ENVIRONMENT, | |
58d121b2 | 126 | GIT_REPLACE_REF_BASE_ENVIRONMENT, |
a6f7f9a3 | 127 | GIT_PREFIX_ENVIRONMENT, |
74866d75 | 128 | GIT_SUPER_PREFIX_ENVIRONMENT, |
069c0532 | 129 | GIT_SHALLOW_FILE_ENVIRONMENT, |
c7b3a3d2 | 130 | GIT_COMMON_DIR_ENVIRONMENT, |
48a7c1c4 GB |
131 | NULL |
132 | }; | |
133 | ||
a1bea2c1 JT |
134 | static char *expand_namespace(const char *raw_namespace) |
135 | { | |
136 | struct strbuf buf = STRBUF_INIT; | |
137 | struct strbuf **components, **c; | |
138 | ||
139 | if (!raw_namespace || !*raw_namespace) | |
140 | return xstrdup(""); | |
141 | ||
142 | strbuf_addstr(&buf, raw_namespace); | |
143 | components = strbuf_split(&buf, '/'); | |
144 | strbuf_reset(&buf); | |
145 | for (c = components; *c; c++) | |
146 | if (strcmp((*c)->buf, "/") != 0) | |
147 | strbuf_addf(&buf, "refs/namespaces/%s", (*c)->buf); | |
148 | strbuf_list_free(components); | |
8d9c5010 | 149 | if (check_refname_format(buf.buf, 0)) |
cbb46ca7 | 150 | die(_("bad git namespace path \"%s\""), raw_namespace); |
a1bea2c1 JT |
151 | strbuf_addch(&buf, '/'); |
152 | return strbuf_detach(&buf, NULL); | |
153 | } | |
154 | ||
357a03eb NTND |
155 | /* |
156 | * Wrapper of getenv() that returns a strdup value. This value is kept | |
157 | * in argv to be freed later. | |
158 | */ | |
159 | static const char *getenv_safe(struct argv_array *argv, const char *name) | |
160 | { | |
161 | const char *value = getenv(name); | |
162 | ||
163 | if (!value) | |
164 | return NULL; | |
165 | ||
166 | argv_array_push(argv, value); | |
167 | return argv->argv[argv->argc - 1]; | |
168 | } | |
169 | ||
170 | void setup_git_env(const char *git_dir) | |
e1b10391 | 171 | { |
069c0532 | 172 | const char *shallow_file; |
58d121b2 | 173 | const char *replace_ref_base; |
357a03eb NTND |
174 | struct set_gitdir_args args = { NULL }; |
175 | struct argv_array to_free = ARGV_ARRAY_INIT; | |
176 | ||
177 | args.commondir = getenv_safe(&to_free, GIT_COMMON_DIR_ENVIRONMENT); | |
178 | args.object_dir = getenv_safe(&to_free, DB_ENVIRONMENT); | |
179 | args.graft_file = getenv_safe(&to_free, GRAFT_ENVIRONMENT); | |
180 | args.index_file = getenv_safe(&to_free, INDEX_ENVIRONMENT); | |
7bc0dcaa | 181 | args.alternate_db = getenv_safe(&to_free, ALTERNATE_DB_ENVIRONMENT); |
357a03eb NTND |
182 | repo_set_gitdir(the_repository, git_dir, &args); |
183 | argv_array_clear(&to_free); | |
487a2b73 | 184 | |
6476b38b | 185 | if (getenv(NO_REPLACE_OBJECTS_ENVIRONMENT)) |
6ebd1caf | 186 | read_replace_refs = 0; |
58d121b2 | 187 | replace_ref_base = getenv(GIT_REPLACE_REF_BASE_ENVIRONMENT); |
f9b7573f | 188 | free(git_replace_ref_base); |
58d121b2 MH |
189 | git_replace_ref_base = xstrdup(replace_ref_base ? replace_ref_base |
190 | : "refs/replace/"); | |
38f3f094 BW |
191 | free(git_namespace); |
192 | git_namespace = expand_namespace(getenv(GIT_NAMESPACE_ENVIRONMENT)); | |
069c0532 NTND |
193 | shallow_file = getenv(GIT_SHALLOW_FILE_ENVIRONMENT); |
194 | if (shallow_file) | |
6a2df51c | 195 | set_alternate_shallow_file(the_repository, shallow_file, 0); |
0bee5918 SP |
196 | } |
197 | ||
7d1864ce | 198 | int is_bare_repository(void) |
0bee5918 | 199 | { |
e90fdc39 JS |
200 | /* if core.bare is not 'false', let's see if there is a work tree */ |
201 | return is_bare_repository_cfg && !get_git_work_tree(); | |
e1b10391 LT |
202 | } |
203 | ||
b9605bc4 JK |
204 | int have_git_dir(void) |
205 | { | |
206 | return startup_info->have_repository | |
c14c234f | 207 | || the_repository->gitdir; |
b9605bc4 JK |
208 | } |
209 | ||
c5fba16c | 210 | const char *get_git_dir(void) |
e1b10391 | 211 | { |
c14c234f | 212 | if (!the_repository->gitdir) |
73f192c9 | 213 | BUG("git environment hasn't been setup"); |
c14c234f | 214 | return the_repository->gitdir; |
e1b10391 LT |
215 | } |
216 | ||
c7b3a3d2 NTND |
217 | const char *get_git_common_dir(void) |
218 | { | |
c14c234f | 219 | if (!the_repository->commondir) |
73f192c9 | 220 | BUG("git environment hasn't been setup"); |
c14c234f | 221 | return the_repository->commondir; |
c7b3a3d2 NTND |
222 | } |
223 | ||
a1bea2c1 JT |
224 | const char *get_git_namespace(void) |
225 | { | |
38f3f094 | 226 | if (!git_namespace) |
73f192c9 | 227 | BUG("git environment hasn't been setup"); |
38f3f094 | 228 | return git_namespace; |
a1bea2c1 JT |
229 | } |
230 | ||
231 | const char *strip_namespace(const char *namespaced_ref) | |
232 | { | |
bf08c8cf BW |
233 | const char *out; |
234 | if (skip_prefix(namespaced_ref, get_git_namespace(), &out)) | |
235 | return out; | |
236 | return NULL; | |
a1bea2c1 JT |
237 | } |
238 | ||
74866d75 BW |
239 | const char *get_super_prefix(void) |
240 | { | |
241 | static int initialized; | |
242 | if (!initialized) { | |
243 | super_prefix = getenv(GIT_SUPER_PREFIX_ENVIRONMENT); | |
244 | initialized = 1; | |
245 | } | |
246 | return super_prefix; | |
247 | } | |
248 | ||
19757d80 DB |
249 | static int git_work_tree_initialized; |
250 | ||
251 | /* | |
252 | * Note. This works only before you used a work tree. This was added | |
253 | * primarily to support git-clone to work in a new repository it just | |
254 | * created, and is not meant to flip between different work trees. | |
255 | */ | |
256 | void set_git_work_tree(const char *new_work_tree) | |
257 | { | |
83518360 | 258 | if (git_work_tree_initialized) { |
e2a57aac | 259 | new_work_tree = real_path(new_work_tree); |
b4158732 | 260 | if (strcmp(new_work_tree, the_repository->worktree)) |
83518360 NTND |
261 | die("internal error: work tree has already been set\n" |
262 | "Current worktree: %s\nNew worktree: %s", | |
b4158732 | 263 | the_repository->worktree, new_work_tree); |
83518360 NTND |
264 | return; |
265 | } | |
19757d80 | 266 | git_work_tree_initialized = 1; |
b4158732 | 267 | repo_set_worktree(the_repository, new_work_tree); |
19757d80 DB |
268 | } |
269 | ||
e90fdc39 JS |
270 | const char *get_git_work_tree(void) |
271 | { | |
b4158732 | 272 | return the_repository->worktree; |
e90fdc39 JS |
273 | } |
274 | ||
e1b10391 LT |
275 | char *get_object_directory(void) |
276 | { | |
90c62155 | 277 | if (!the_repository->objects->objectdir) |
73f192c9 | 278 | BUG("git environment hasn't been setup"); |
90c62155 | 279 | return the_repository->objects->objectdir; |
e1b10391 LT |
280 | } |
281 | ||
a63b5fca | 282 | int odb_mkstemp(struct strbuf *temp_filename, const char *pattern) |
463db9b1 JN |
283 | { |
284 | int fd; | |
285 | /* | |
286 | * we let the umask do its job, don't try to be more | |
287 | * restrictive except to remove write permission. | |
288 | */ | |
289 | int mode = 0444; | |
a63b5fca BW |
290 | git_path_buf(temp_filename, "objects/%s", pattern); |
291 | fd = git_mkstemp_mode(temp_filename->buf, mode); | |
463db9b1 JN |
292 | if (0 <= fd) |
293 | return fd; | |
294 | ||
295 | /* slow path */ | |
a63b5fca BW |
296 | /* some mkstemp implementations erase temp_filename on failure */ |
297 | git_path_buf(temp_filename, "objects/%s", pattern); | |
298 | safe_create_leading_directories(temp_filename->buf); | |
299 | return xmkstemp_mode(temp_filename->buf, mode); | |
463db9b1 JN |
300 | } |
301 | ||
eaeefc32 | 302 | int odb_pack_keep(const char *name) |
463db9b1 JN |
303 | { |
304 | int fd; | |
305 | ||
463db9b1 JN |
306 | fd = open(name, O_RDWR|O_CREAT|O_EXCL, 0600); |
307 | if (0 <= fd) | |
308 | return fd; | |
309 | ||
310 | /* slow path */ | |
eaeefc32 | 311 | safe_create_leading_directories_const(name); |
463db9b1 JN |
312 | return open(name, O_RDWR|O_CREAT|O_EXCL, 0600); |
313 | } | |
314 | ||
e1b10391 LT |
315 | char *get_index_file(void) |
316 | { | |
c14c234f | 317 | if (!the_repository->index_file) |
73f192c9 | 318 | BUG("git environment hasn't been setup"); |
c14c234f | 319 | return the_repository->index_file; |
e1b10391 LT |
320 | } |
321 | ||
0437a2e3 | 322 | char *get_graft_file(struct repository *r) |
e1b10391 | 323 | { |
0437a2e3 | 324 | if (!r->graft_file) |
73f192c9 | 325 | BUG("git environment hasn't been setup"); |
0437a2e3 | 326 | return r->graft_file; |
e1b10391 | 327 | } |
d7ac12b2 | 328 | |
8500e0de | 329 | static void set_git_dir_1(const char *path) |
d7ac12b2 JS |
330 | { |
331 | if (setenv(GIT_DIR_ENVIRONMENT, path, 1)) | |
cbb46ca7 | 332 | die(_("could not set GIT_DIR to '%s'"), path); |
357a03eb | 333 | setup_git_env(path); |
d7ac12b2 | 334 | } |
a6fa5992 | 335 | |
8500e0de JK |
336 | static void update_relative_gitdir(const char *name, |
337 | const char *old_cwd, | |
338 | const char *new_cwd, | |
339 | void *data) | |
340 | { | |
341 | char *path = reparent_relative_path(old_cwd, new_cwd, get_git_dir()); | |
342 | trace_printf_key(&trace_setup_key, | |
343 | "setup: move $GIT_DIR to '%s'", | |
344 | path); | |
345 | set_git_dir_1(path); | |
346 | free(path); | |
347 | } | |
348 | ||
349 | void set_git_dir(const char *path) | |
350 | { | |
351 | set_git_dir_1(path); | |
352 | if (!is_absolute_path(path)) | |
353 | chdir_notify_register(NULL, update_relative_gitdir, NULL); | |
d7ac12b2 | 354 | } |
a6fa5992 PN |
355 | |
356 | const char *get_log_output_encoding(void) | |
357 | { | |
358 | return git_log_output_encoding ? git_log_output_encoding | |
359 | : get_commit_output_encoding(); | |
360 | } | |
361 | ||
362 | const char *get_commit_output_encoding(void) | |
363 | { | |
364 | return git_commit_encoding ? git_commit_encoding : "UTF-8"; | |
365 | } | |
7875acb6 JK |
366 | |
367 | static int the_shared_repository = PERM_UMASK; | |
ae5f6776 | 368 | static int need_shared_repository_from_config = 1; |
7875acb6 JK |
369 | |
370 | void set_shared_repository(int value) | |
371 | { | |
372 | the_shared_repository = value; | |
ae5f6776 | 373 | need_shared_repository_from_config = 0; |
7875acb6 JK |
374 | } |
375 | ||
376 | int get_shared_repository(void) | |
377 | { | |
ae5f6776 JK |
378 | if (need_shared_repository_from_config) { |
379 | const char *var = "core.sharedrepository"; | |
380 | const char *value; | |
381 | if (!git_config_get_value(var, &value)) | |
382 | the_shared_repository = git_config_perm(var, value); | |
383 | need_shared_repository_from_config = 0; | |
384 | } | |
7875acb6 JK |
385 | return the_shared_repository; |
386 | } | |
4543926b JK |
387 | |
388 | void reset_shared_repository(void) | |
389 | { | |
390 | need_shared_repository_from_config = 1; | |
391 | } | |
27344d6a JK |
392 | |
393 | int use_optional_locks(void) | |
394 | { | |
395 | return git_env_bool(GIT_OPTIONAL_LOCKS_ENVIRONMENT, 1); | |
396 | } | |
a2cd709d AR |
397 | |
398 | int print_sha1_ellipsis(void) | |
399 | { | |
400 | /* | |
401 | * Determine if the calling environment contains the variable | |
402 | * GIT_PRINT_SHA1_ELLIPSIS set to "yes". | |
403 | */ | |
404 | static int cached_result = -1; /* unknown */ | |
405 | ||
406 | if (cached_result < 0) { | |
407 | const char *v = getenv("GIT_PRINT_SHA1_ELLIPSIS"); | |
408 | cached_result = (v && !strcasecmp(v, "yes")); | |
409 | } | |
410 | return cached_result; | |
411 | } |