From: Tian Yuchen Date: Tue, 14 Jul 2026 03:25:25 +0000 (+0800) Subject: repository: adjust the comment of config_values_private_ X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5eac7ac7151a27025386d48e21c4608115a16db6;p=thirdparty%2Fgit.git repository: adjust the comment of config_values_private_ The configurations in 'struct config_values_private_' are not all parsed in 'git_default_config()'. For example, 'pager_program' is now parsed in 'pager.c'. Therefore, update the comment. Mentored-by: Christian Couder Mentored-by: Ayush Chandekar Mentored-by: Olamide Caleb Bello Signed-off-by: Tian Yuchen Signed-off-by: Junio C Hamano --- diff --git a/repository.h b/repository.h index 36e2db2633..9093e6af93 100644 --- a/repository.h +++ b/repository.h @@ -152,7 +152,7 @@ struct repository { /* Repository's compatibility hash algorithm. */ const struct git_hash_algo *compat_hash_algo; - /* Repository's config values parsed by git_default_config() */ + /* Repository-specific configuration values. */ struct repo_config_values config_values_private_; /* Repository's reference storage format, as serialized on disk. */