From: Olamide Caleb Bello Date: Tue, 13 Jan 2026 16:44:00 +0000 (+0100) Subject: environment: stop storing `core.attributesFile` globally X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1dba24dc9f211fba4f61cb225159c0c740089876;p=thirdparty%2Fgit.git environment: stop storing `core.attributesFile` globally The config value parsed in git_default_core_config() is loaded eagerly and stored in the global variable `git_attributes_file`. Storing this value in a global variable can lead to unexpected behaviours when more than one Git repository run in the same Git process. Move this value into a `struct repo_config_values` which holds all the values parsed by `git_default_config()` and can be accessed per repository via `git_default_config()`. This will ensure the current behaviour remains the same while also enabling the libification of Git. It is important to note that `git_default_config()` is a wrapper to other `git_default_*_config()` such as `git_default_core_config()`. Therefore to access and modify this global variable, the change has to be made in the function which parses and stores the value in the global variable. Suggested-by: Phillip Wood Mentored-by: Christian Couder Mentored-by: Usman Akinyemi Signed-off-by: Olamide Caleb Bello Signed-off-by: Junio C Hamano --- diff --git a/attr.c b/attr.c index 4999b7e09d..fbb9eaffaf 100644 --- a/attr.c +++ b/attr.c @@ -881,10 +881,11 @@ const char *git_attr_system_file(void) const char *git_attr_global_file(void) { - if (!git_attributes_file) - git_attributes_file = xdg_config_home("attributes"); + struct repo_config_values *cfg = &the_repository->config_values; + if (!cfg->attributes_file_path) + cfg->attributes_file_path = xdg_config_home("attributes"); - return git_attributes_file; + return cfg->attributes_file_path; } int git_attr_system_is_enabled(void) diff --git a/environment.c b/environment.c index a770b5921d..2789c3514a 100644 --- a/environment.c +++ b/environment.c @@ -53,7 +53,6 @@ char *git_commit_encoding; char *git_log_output_encoding; char *apply_default_whitespace; char *apply_default_ignorewhitespace; -char *git_attributes_file; int zlib_compression_level = Z_BEST_SPEED; int pack_compression_level = Z_DEFAULT_COMPRESSION; int fsync_object_files = -1; @@ -327,6 +326,8 @@ next_name: static int git_default_core_config(const char *var, const char *value, const struct config_context *ctx, void *cb) { + struct repo_config_values *cfg = &the_repository->config_values; + /* This needs a better name */ if (!strcmp(var, "core.filemode")) { trust_executable_bit = git_config_bool(var, value); @@ -364,8 +365,8 @@ static int git_default_core_config(const char *var, const char *value, } if (!strcmp(var, "core.attributesfile")) { - FREE_AND_NULL(git_attributes_file); - return git_config_pathname(&git_attributes_file, var, value); + FREE_AND_NULL(cfg->attributes_file_path); + return git_config_pathname(&cfg->attributes_file_path, var, value); } if (!strcmp(var, "core.bare")) { diff --git a/environment.h b/environment.h index 51898c99cd..8c7803425e 100644 --- a/environment.h +++ b/environment.h @@ -84,6 +84,12 @@ extern const char * const local_repo_env[]; struct strvec; +/* Config values parsed by git_default_config() */ +struct repo_config_values { + /* core config values */ + char *attributes_file_path; +}; + /* * Wrapper of getenv() that returns a strdup value. This value is kept * in argv to be freed later. @@ -152,7 +158,6 @@ extern int assume_unchanged; extern int warn_on_object_refname_ambiguity; extern char *apply_default_whitespace; extern char *apply_default_ignorewhitespace; -extern char *git_attributes_file; extern int zlib_compression_level; extern int pack_compression_level; extern unsigned long pack_size_limit_cfg; diff --git a/repository.h b/repository.h index 6063c4b846..638a142577 100644 --- a/repository.h +++ b/repository.h @@ -3,6 +3,7 @@ #include "strmap.h" #include "repo-settings.h" +#include "environment.h" struct config_set; struct git_hash_algo; @@ -148,6 +149,9 @@ struct repository { /* Repository's compatibility hash algorithm. */ const struct git_hash_algo *compat_hash_algo; + /* Repository's config values parsed by git_default_config() */ + struct repo_config_values config_values; + /* Repository's reference storage format, as serialized on disk. */ enum ref_storage_format ref_storage_format;