aboutsummaryrefslogtreecommitdiff
path: root/t/t7700-repack.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-06-10 16:20:30 -0400
committerJunio C Hamano <gitster@pobox.com>2014-06-10 14:05:19 -0700
commit71d76cb48029c94af022ea9dc9c74b4ba8bcc3a3 (patch)
tree5632c4870f1acdcb47d3d6f9661728c09786e94c /t/t7700-repack.sh
parent2bed2d47b4394bd6d4ae4645be9f7424009d3c9c (diff)
downloadgit-71d76cb48029c94af022ea9dc9c74b4ba8bcc3a3.tar.gz
git-71d76cb48029c94af022ea9dc9c74b4ba8bcc3a3.tar.xz
repack: introduce repack.writeBitmaps config option
We currently have pack.writeBitmaps, which originally operated at the pack-objects level. This should really have been a repack.* option from day one. Let's give it the more sensible name, but keep the old version as a deprecated synonym. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7700-repack.sh')
-rwxr-xr-xt/t7700-repack.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7700-repack.sh b/t/t7700-repack.sh
index e70b98358..28f713565 100755
--- a/t/t7700-repack.sh
+++ b/t/t7700-repack.sh
@@ -53,7 +53,7 @@ test_expect_success 'writing bitmaps via command-line can duplicate .keep object
test_expect_success 'writing bitmaps via config can duplicate .keep objects' '
# build on $objsha1, $packsha1, and .keep state from previous
- git -c pack.writebitmaps=true repack -Adl &&
+ git -c repack.writebitmaps=true repack -Adl &&
test_when_finished "found_duplicate_object=" &&
for p in .git/objects/pack/*.idx; do
idx=$(basename $p)