X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=setup.c;h=36ede3d87483548bb1ce6c19361d7f6584386147;hb=2283645b85dc91ca958b05066511083255a8612a;hp=d3556edf121ba78b0b83d20fdbd9cb397e79eb2b;hpb=423325a2d24638ddcc82ce47be5e40be550f4507;p=git.git diff --git a/setup.c b/setup.c index d3556edf..36ede3d8 100644 --- a/setup.c +++ b/setup.c @@ -180,6 +180,8 @@ int check_repository_format_version(const char *var, const char *value) { if (strcmp(var, "core.repositoryformatversion") == 0) repository_format_version = git_config_int(var, value); + else if (strcmp(var, "core.sharedrepository") == 0) + shared_repository = git_config_bool(var, value); return 0; }