summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2f8ee02)
raw | patch | inline | side by side (parent: 2f8ee02)
author | Carlos Martín Nieto <cmn@elego.de> | |
Wed, 30 Mar 2011 10:22:32 +0000 (12:22 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 30 Mar 2011 18:44:59 +0000 (11:44 -0700) |
Change the order to 1/0 to have the same true/false order as the rest
of the possibilities for a boolean variable in order not not confuse
users.
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
of the possibilities for a boolean variable in order not not confuse
users.
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt | patch | blob | history |
index 701fba92dc1cfda8982aee8b66eb39b8b1c5816b..1a571f41742af09f52cc31462f501521aacd00d9 100644 (file)
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
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, true/false or on/off. Case is not significant in boolean values, when
+1/0, 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".