summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-11-24 20:45:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-24 20:45:07 (GMT)
commitbe0a4c820094c72cff67b69de8ba7ce88145ce86 (patch)
treefb9bac5ca8cd01ac38f5748547bbf689a8d02f15 /Documentation
parent2f9d2e22cb553d26e355e63171678a848170dcf8 (diff)
parent89d71f7564cb3945b2775092284a4de807f577e4 (diff)
downloadgit-be0a4c820094c72cff67b69de8ba7ce88145ce86.zip
git-be0a4c820094c72cff67b69de8ba7ce88145ce86.tar.gz
git-be0a4c820094c72cff67b69de8ba7ce88145ce86.tar.bz2
Merge branch 'jk/repack-reuse-object' into maint
* jk/repack-reuse-object: Documentation: pack.compression: explain how to recompress repack: add -F flag to let user choose between --no-reuse-delta/object Conflicts: Documentation/git-repack.txt
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt4
-rw-r--r--Documentation/git-repack.txt6
2 files changed, 9 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 7f6b210..e6a8f27 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -1466,6 +1466,10 @@ pack.compression::
not set, defaults to -1, the zlib default, which is "a default
compromise between speed and compression (currently equivalent
to level 6)."
++
+Note that changing the compression level will not automatically recompress
+all existing objects. You can force recompression by passing the -F option
+to linkgit:git-repack[1].
pack.deltaCacheSize::
The maximum memory in bytes used for caching deltas in
diff --git a/Documentation/git-repack.txt b/Documentation/git-repack.txt
index af79b86..27f7865 100644
--- a/Documentation/git-repack.txt
+++ b/Documentation/git-repack.txt
@@ -8,7 +8,7 @@ git-repack - Pack unpacked objects in a repository
SYNOPSIS
--------
-'git repack' [-a] [-A] [-d] [-f] [-l] [-n] [-q] [--window=<n>] [--depth=<n>]
+'git repack' [-a] [-A] [-d] [-f] [-F] [-l] [-n] [-q] [--window=<n>] [--depth=<n>]
DESCRIPTION
-----------
@@ -62,6 +62,10 @@ other objects in that pack they already have locally.
linkgit:git-pack-objects[1].
-f::
+ Pass the `--no-reuse-delta` option to `git-pack-objects`, see
+ linkgit:git-pack-objects[1].
+
+-F::
Pass the `--no-reuse-object` option to `git-pack-objects`, see
linkgit:git-pack-objects[1].