fsck: don't fsck alternates for connectivity-only check

Commit 02976bf (fsck: introduce `git fsck --connectivity-only`,
2015-06-22) recently gave fsck an option to perform only a
subset of the checks, by skipping the fsck_object_dir()
call. However, it does so only for the local object
directory, and we still do expensive checks on any alternate
repos. We should skip them in this case, too.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2015-09-24 17:05:30 -04:00 committed by Junio C Hamano
parent 108332c7a0
commit fbe85e73ce

View File

@ -678,7 +678,7 @@ int cmd_fsck(int argc, const char **argv, const char *prefix)
git_config(fsck_config, NULL); git_config(fsck_config, NULL);
fsck_head_link(); fsck_head_link();
if (!connectivity_only) if (!connectivity_only) {
fsck_object_dir(get_object_directory()); fsck_object_dir(get_object_directory());
prepare_alt_odb(); prepare_alt_odb();
@ -689,6 +689,7 @@ int cmd_fsck(int argc, const char **argv, const char *prefix)
namebuf[namelen - 1] = 0; namebuf[namelen - 1] = 0;
fsck_object_dir(namebuf); fsck_object_dir(namebuf);
} }
}
if (check_full) { if (check_full) {
struct packed_git *p; struct packed_git *p;