builtin-init-db: spell the in-program configuration variable in lowercase.

Just for consistency -- setup.c spells it in lowercase.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-06-09 15:26:08 -07:00
parent 7612a1efdb
commit e9b9368168

View file

@ -287,7 +287,7 @@ int cmd_init_db(int argc, const char **argv, char **envp)
safe_create_dir(path, 1);
if (shared_repository)
git_config_set("core.sharedRepository", "true");
git_config_set("core.sharedrepository", "true");
return 0;
}