summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2006-07-23 05:50:30 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-24 06:40:35 (GMT)
commit4812a93a8c0ad25ee701da8ff46a3c5d62994224 (patch)
tree2ee5fd3278f6ff6efed8b874193bdeed82eb171c /Documentation
parent8eb38cad440d8d51d8737d546a067a88361f6c3d (diff)
downloadgit-4812a93a8c0ad25ee701da8ff46a3c5d62994224.zip
git-4812a93a8c0ad25ee701da8ff46a3c5d62994224.tar.gz
git-4812a93a8c0ad25ee701da8ff46a3c5d62994224.tar.bz2
pack-objects: check pack.window for default window size
For some repositories, deltas simply don't make sense. One can disable them for git-repack by adding --window, but git-push insists on making the deltas which can be very CPU-intensive for little benefit. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index f4985d4..9d08dfc 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -193,6 +193,10 @@ merge.summary::
Whether to include summaries of merged commits in newly created
merge commit messages. False by default.
+pack.window::
+ The size of the window used by gitlink:git-pack-objects[1] when no
+ window size is given on the command line. Defaults to 10.
+
pull.octopus::
The default merge strategy to use when pulling multiple branches
at once.