From: Junio C Hamano Date: Mon, 8 Jan 2007 06:53:32 +0000 (+0000) Subject: Autogenerated HTML docs for v1.4.4.4-g9a5e4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fc4d38ced802738c5d6aaabf66a345d2d6c97c82;p=git.git Autogenerated HTML docs for v1.4.4.4-g9a5e4 --- diff --git a/config.txt b/config.txt index 4318bf933..b4aae0d0a 100644 --- a/config.txt +++ b/config.txt @@ -118,6 +118,34 @@ core.legacyheaders:: database directly (where the "http://" and "rsync://" protocols count as direct access). +core.packedGitWindowSize:: + Number of bytes of a pack file to map into memory in a + single mapping operation. Larger window sizes may allow + your system to process a smaller number of large pack files + more quickly. Smaller window sizes will negatively affect + performance due to increased calls to the operating system's + memory manager, but may improve performance when accessing + a large number of large pack files. ++ +Default is 1 MiB if NO_MMAP was set at compile time, otherwise 32 +MiB on 32 bit platforms and 1 GiB on 64 bit platforms. This should +be reasonable for all users/operating systems. You probably do +not need to adjust this value. ++ +Common unit suffixes of 'k', 'm', or 'g' are supported. + +core.packedGitLimit:: + Maximum number of bytes to map simultaneously into memory + from pack files. If Git needs to access more than this many + bytes at once to complete an operation it will unmap existing + regions to reclaim virtual address space within the process. ++ +Default is 256 MiB on 32 bit platforms and 8 GiB on 64 bit platforms. +This should be reasonable for all users/operating systems, except on +the largest projects. You probably do not need to adjust this value. ++ +Common unit suffixes of 'k', 'm', or 'g' are supported. + alias.*:: Command aliases for the gitlink:git[1] command wrapper - e.g. after defining "alias.last = cat-file commit HEAD", the invocation diff --git a/everyday.html b/everyday.html index c36c9357f..bf4bbcd1d 100644 --- a/everyday.html +++ b/everyday.html @@ -284,7 +284,7 @@ of git repositories.