Skip to content

Commit

Permalink
Merge branch 'jk/pack-objects-no-bitmap-when-splitting' into maint
Browse files Browse the repository at this point in the history
* jk/pack-objects-no-bitmap-when-splitting:
  pack-objects: turn off bitmaps when we split packs
  • Loading branch information
Junio C Hamano committed Oct 29, 2014
2 parents 9db1838 + 2113471 commit ebc2e5a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions builtin/pack-objects.c
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,7 @@ static void write_pack_file(void)
fixup_pack_header_footer(fd, sha1, pack_tmp_name,
nr_written, sha1, offset);
close(fd);
write_bitmap_index = 0;
}

if (!pack_to_stdout) {
Expand Down
9 changes: 9 additions & 0 deletions t/t5310-pack-bitmaps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,13 @@ test_expect_success JGIT 'jgit can read our bitmaps' '
)
'

test_expect_success 'splitting packs does not generate bogus bitmaps' '
test-genrandom foo $((1024 * 1024)) >rand &&
git add rand &&
git commit -m "commit with big file" &&
git -c pack.packSizeLimit=500k repack -adb &&
git init --bare no-bitmaps.git &&
git -C no-bitmaps.git fetch .. HEAD
'

test_done

0 comments on commit ebc2e5a

Please sign in to comment.