check_repository_format_gently(): refuse extensions for old repositories
Previously, extensions were recognized regardless of repository format version. If the user sets an undefined "extensions" value on a repository of version 0 and that value is used by a future git version, they might get an undesired result. Because all extensions now also upgrade repository versions, tightening the check would help avoid this for future extensions. Signed-off-by: Xin Li <delphij@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
12
setup.c
12
setup.c
@ -507,9 +507,15 @@ static int check_repository_format_gently(const char *gitdir, struct repository_
|
||||
die("%s", err.buf);
|
||||
}
|
||||
|
||||
repository_format_precious_objects = candidate->precious_objects;
|
||||
set_repository_format_partial_clone(candidate->partial_clone);
|
||||
repository_format_worktree_config = candidate->worktree_config;
|
||||
if (candidate->version >= 1) {
|
||||
repository_format_precious_objects = candidate->precious_objects;
|
||||
set_repository_format_partial_clone(candidate->partial_clone);
|
||||
repository_format_worktree_config = candidate->worktree_config;
|
||||
} else {
|
||||
repository_format_precious_objects = 0;
|
||||
set_repository_format_partial_clone(NULL);
|
||||
repository_format_worktree_config = 0;
|
||||
}
|
||||
string_list_clear(&candidate->unknown_extensions, 0);
|
||||
|
||||
if (repository_format_worktree_config) {
|
||||
|
Reference in New Issue
Block a user