Nicolas Pitre <nico@xxxxxxx> writes: > We should be able to fall back to loose objects or alternative packs when > a pack becomes corrupted. This is especially true when an object exists > in one pack only as a delta but its base object is corrupted. Currently > there is no way to retrieve the former object even if the later is > available in another pack or loose. All three patches applied, but with the following squashed in. Thanks sha1_file.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sha1_file.c b/sha1_file.c index a5cef94..9330bc4 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -1418,8 +1418,8 @@ const char *packed_object_info_detail(struct packed_git *p, case OBJ_OFS_DELTA: obj_offset = get_delta_base(p, &w_curs, &curpos, type, obj_offset); if (!obj_offset) - die("pack %s contains bad delta base reference", - p->pack_name, type); + die("pack %s contains bad delta base reference of type %s", + p->pack_name, typename(type)); if (*delta_chain_length == 0) { revidx = find_pack_revindex(p, obj_offset); hashcpy(base_sha1, nth_packed_object_sha1(p, revidx->nr)); -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html