From 22c79eab2956d7f47ff2495104583a25208565ac Mon Sep 17 00:00:00 2001 From: Nicolas Pitre Date: Wed, 25 Jun 2008 00:24:53 -0400 Subject: repack.usedeltabaseoffset config option now defaults to "true" As announced for 1.6.0. Access over the native protocol by old git versions is unaffected as this capability is negociated by the protocol. Otherwise setting this config option to "false" and doing a 'git repack -a -d' is enough to remain compatible with ancient git versions (older than 1.4.4). Signed-off-by: Nicolas Pitre Signed-off-by: Junio C Hamano --- git-repack.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'git-repack.sh') diff --git a/git-repack.sh b/git-repack.sh index 072d1b40f7..8c3bc134ad 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -44,11 +44,7 @@ do shift done -# Later we will default repack.UseDeltaBaseOffset to true -default_dbo=false - -case "`git config --bool repack.usedeltabaseoffset || - echo $default_dbo`" in +case "`git config --bool repack.usedeltabaseoffset || echo true`" in true) extra="$extra --delta-base-offset" ;; esac -- cgit v1.2.3