1
0
mirror of https://github.com/git/git.git synced 2024-09-28 10:00:54 +02:00

Allow default core.logallrefupdates to be overridden with template's config

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Alex Riesen 2007-01-23 16:51:18 +01:00 committed by Junio C Hamano
parent ae1dffcb28
commit 196055c2db

View File

@ -257,7 +257,9 @@ static int create_default_files(const char *git_dir, const char *template_path)
}
else {
git_config_set("core.bare", "false");
git_config_set("core.logallrefupdates", "true");
/* allow template config file to override the default */
if (log_all_ref_updates == -1)
git_config_set("core.logallrefupdates", "true");
}
return reinit;
}