summaryrefslogtreecommitdiff
path: root/test-sha1.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-03-15 02:38:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-17 22:02:39 (GMT)
commit373c67da1df7fcd33593ca26e6d67f177152b21a (patch)
tree07cf9028ed44f478d66fc2d35cfdc08606afd902 /test-sha1.c
parent6b5b3a27b7faf9d72efec28fa017408daf45cd00 (diff)
downloadgit-373c67da1df7fcd33593ca26e6d67f177152b21a.zip
git-373c67da1df7fcd33593ca26e6d67f177152b21a.tar.gz
git-373c67da1df7fcd33593ca26e6d67f177152b21a.tar.bz2
pack-objects: turn off bitmaps when skipping objects
The pack bitmap format requires that we have a single bit for each object in the pack, and that each object's bitmap represents its complete set of reachable objects. Therefore we have no way to represent the bitmap of an object which references objects outside the pack. We notice this problem while generating the bitmaps, as we try to find the offset of a particular object and realize that we do not have it. In this case we die, and neither the bitmap nor the pack is generated. This is correct, but perhaps a little unfriendly. If you have bitmaps turned on in the config, many repacks will fail which would otherwise succeed. E.g., incremental repacks, repacks with "-l" when you have alternates, ".keep" files. Instead, this patch notices early that we are omitting some objects from the pack and turns off bitmaps (with a warning). Note that this is not strictly correct, as it's possible that the object being omitted is not reachable from any other object in the pack. In practice, this is almost never the case, and there are two advantages to doing it this way: 1. The code is much simpler, as we do not have to cleanly abort the bitmap-generation process midway through. 2. We do not waste time partially generating bitmaps only to find out that some object deep in the history is not being packed. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-sha1.c')
0 files changed, 0 insertions, 0 deletions