bundle: Use OFS_DELTA in bundle files
commit787d2a784b1d5d9c59c0098533ce9fdb757942d9
authorShawn O. Pearce <spearce@spearce.org>
Sun, 6 Feb 2011 00:58:53 +0000 (5 16:58 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 7 Feb 2011 06:50:26 +0000 (6 22:50 -0800)
treee2d4f01d6ad0cac77524fdd9722c9a6abc7f7173
parent597a63054241c122515c93cbce45bc44eb231f18
bundle: Use OFS_DELTA in bundle files

git-bundle first appeared in 2e0afafe ("Add git-bundle") in Feb 2007,
and first shipped in Git 1.5.1.

However, OFS_DELTA is an even earlier invention, coming about in
eb32d236 ("introduce delta objects with offset to base") in Sep 2006,
and first shipped in Git 1.4.4.5.

OFS_DELTA is smaller, about 3.2%-5% smaller, and is typically faster
to access than REF_DELTA because the exact location of the delta base
is available after parsing the object header.  Since all bundle aware
versions of Git are also OFS_DELTA aware, just make it the default.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Acked-by: Nicolas Pitre <nico@fluxnic.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
bundle.c