diff options
author | Jeff King <peff@peff.net> | 2006-07-23 01:50:30 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-23 23:40:35 -0700 |
commit | 4812a93a8c0ad25ee701da8ff46a3c5d62994224 (patch) | |
tree | 2ee5fd3278f6ff6efed8b874193bdeed82eb171c /Documentation | |
parent | Disable linking with Fink or DarwinPorts. (diff) | |
download | tgif-4812a93a8c0ad25ee701da8ff46a3c5d62994224.tar.xz |
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.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index f4985d453e..9d08dfceda 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. |