diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-24 16:47:24 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-24 18:08:02 -0800 |
commit | af7cf268f0bf8d4216f9c11d1cb0082cb3550f61 (patch) | |
tree | fb4cc3c94a6c793122e02c3797b04f6716549e62 /Documentation | |
parent | 9e10fd1ac0bb50202138efb9291568160dacd7ab (diff) | |
download | git-af7cf268f0bf8d4216f9c11d1cb0082cb3550f61.tar.gz |
fetch-pack: remove --keep-auto and make it the default.
This makes git-fetch over git native protocol to automatically
decide to keep the downloaded pack if the fetch results in more
than 100 objects, just like receive-pack invoked by git-push
does. This logic is disabled when --keep is explicitly given
from the command line, so that a very small clone still keeps
the downloaded pack as before.
The 100 threshold can be adjusted with fetch.unpacklimit
configuration. We might want to introduce transfer.unpacklimit
to consolidate the two unpacklimit variables, which will be a
topic for the next patch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index d8244b1510..383ff29f82 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -295,6 +295,16 @@ diff.renames:: will enable basic rename detection. If set to "copies" or "copy", it will detect copies, as well. +fetch.unpackLimit:: + If the number of objects fetched over the git native + transfer is below this + limit, then the objects will be unpacked into loose object + files. However if the number of received objects equals or + exceeds this limit then the received pack will be stored as + a pack, after adding any missing delta bases. Storing the + pack from a push can make the push operation complete faster, + especially on slow filesystems. + format.headers:: Additional email headers to include in a patch to be submitted by mail. See gitlink:git-format-patch[1]. |