X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-repack.sh;h=683960b04d6b743e687b2eb640d2b0e00ccfd313;hb=0bb3a0ba9e3cbb283a747e4736bcf7484d076a73;hp=072d1b40f7d71aa731c90e9af158a0fe5cf89fde;hpb=c636d0e2bcffdbd55c096944561d9ac470da600e;p=git.git diff --git a/git-repack.sh b/git-repack.sh index 072d1b40f..683960b04 100755 --- a/git-repack.sh +++ b/git-repack.sh @@ -5,7 +5,7 @@ OPTIONS_KEEPDASHDASH= OPTIONS_SPEC="\ -git-repack [options] +git repack [options] -- a pack everything in a single pack A same as -a, and turn unreachable objects loose @@ -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