diff options
author | Junio C Hamano <junkio@cox.net> | 2006-06-10 00:26:08 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-06-10 00:26:08 +0200 |
commit | e9b9368168399bf165a0172bb00a67216479c82b (patch) | |
tree | 4f6fd6bb48856023e8d9473b73bde11f45c81e99 /builtin-init-db.c | |
parent | git-rm: honor -n flag. (diff) | |
download | git-e9b9368168399bf165a0172bb00a67216479c82b.tar.xz git-e9b9368168399bf165a0172bb00a67216479c82b.zip |
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>
Diffstat (limited to 'builtin-init-db.c')
-rw-r--r-- | builtin-init-db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c index 2a1384ccb0..88b39a47eb 100644 --- a/builtin-init-db.c +++ b/builtin-init-db.c @@ -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; } |