aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorMichał Kiedrowicz <michal.kiedrowicz@gmail.com>2009-04-17 22:34:25 +0200
committerJunio C Hamano <gitster@pobox.com>2009-04-17 20:46:43 -0700
commit0cbcf7ad71559245b59b90a324011fcf0657af8c (patch)
treef78a7ea089fac2b73053c96443289d1538d578e5 /Documentation
parent8f8c6fafd92fd547547bd7735e2d121a20997703 (diff)
downloadgit-0cbcf7ad71559245b59b90a324011fcf0657af8c.tar.gz
git-0cbcf7ad71559245b59b90a324011fcf0657af8c.tar.xz
Documentation: boolean value may be given by on/off
Signed-off-by: Michał Kiedrowicz <michal.kiedrowicz@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/config.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt
index 3afd12474..103ea9bc2 100644
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
@@ -61,7 +61,7 @@ Internal whitespace within a variable value is retained verbatim.
The values following the equals sign in variable assign are all either
a string, an integer, or a boolean. Boolean values may be given as yes/no,
-0/1 or true/false. Case is not significant in boolean values, when
+0/1, true/false or on/off. Case is not significant in boolean values, when
converting value to the canonical form using '--bool' type specifier;
'git-config' will ensure that the output is "true" or "false".