diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-12-12 21:49:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-12 21:49:52 -0800 |
commit | 47bfb3d946288ec359bf98d06cc668a2ba12f3cb (patch) | |
tree | 2ca5f0c8e29df6578892bf5b495573bd105b6f36 /Documentation/config.txt | |
parent | 6a79be3e30a8682064ef91b9598642198cddef44 (diff) | |
parent | f4b05a4947f5f1cf3e01fb61ec5919cc28fe11f7 (diff) | |
download | git-47bfb3d946288ec359bf98d06cc668a2ba12f3cb.tar.gz |
Merge branch 'js/configurable-tab'
* js/configurable-tab:
Make the tab width used for whitespace checks configurable
apply --whitespace=fix: fix tab-in-indent
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 0f8579331e..3f01bd929f 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -522,6 +522,9 @@ core.whitespace:: part of the line terminator, i.e. with it, `trailing-space` does not trigger if the character before such a carriage-return is not a whitespace (not enabled by default). +* `tabwidth=<n>` tells how many character positions a tab occupies; this + is relevant for `indent-with-non-tab` and when git fixes `tab-in-indent` + errors. The default tab width is 8. Allowed values are 1 to 63. core.fsyncobjectfiles:: This boolean will enable 'fsync()' when writing object files. |