diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-09-04 12:26:14 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-09-04 12:27:17 -0700 |
commit | 5e838ea7aa74dfbc9820bcf798c0f118e91532f9 (patch) | |
tree | 1a0417208bc9161ab0df0072107664e067b8a0ec /Documentation | |
parent | 81b50f3ce40bfdd66e5d967bf82be001039a9a98 (diff) | |
download | git-5e838ea7aa74dfbc9820bcf798c0f118e91532f9.tar.gz git-5e838ea7aa74dfbc9820bcf798c0f118e91532f9.tar.xz |
fetch.fsckobjects: verify downloaded objects
This corresponds to receive.fsckobjects configuration variable added (a
lot) earlier in 20dc001 (receive-pack: allow using --strict mode for
unpacking objects, 2008-02-25).
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 664de6b1a..4cbc4b928 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -820,6 +820,12 @@ diff.wordRegex:: sequences that match the regular expression are "words", all other characters are *ignorable* whitespace. +fetch.fsckObjects:: + If it is set to true, git-fetch-pack will check all fetched + objects. It will abort in the case of a malformed object or a + broken link. The result of an abort are only dangling objects. + Defaults to false. + fetch.unpackLimit:: If the number of objects fetched over the git native transfer is below this |