diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-08-22 03:47:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-22 03:47:48 +0200 |
commit | 5e092b5bcea48c098af7000f888a2a0f16c9db77 (patch) | |
tree | a7f8635ab1ad5542201d8d46f39d4672d3bd87b9 /Documentation/config.txt | |
parent | Merge branch 'bc/mailsplit-cr-at-eol' (diff) | |
parent | git apply: option to ignore whitespace differences (diff) | |
download | git-5e092b5bcea48c098af7000f888a2a0f16c9db77.tar.xz git-5e092b5bcea48c098af7000f888a2a0f16c9db77.zip |
Merge branch 'gb/apply-ignore-whitespace'
* gb/apply-ignore-whitespace:
git apply: option to ignore whitespace differences
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 2632c5149e..5256c7fb81 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -461,6 +461,14 @@ it will be treated as a shell command. For example, defining executed from the top-level directory of a repository, which may not necessarily be the current directory. +apply.ignorewhitespace:: + When set to 'change', tells 'git-apply' to ignore changes in + whitespace, in the same way as the '--ignore-space-change' + option. + When set to one of: no, none, never, false tells 'git-apply' to + respect all whitespace differences. + See linkgit:git-apply[1]. + apply.whitespace:: Tells 'git-apply' how to handle whitespaces, in the same way as the '--whitespace' option. See linkgit:git-apply[1]. |