summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: eabb0bf)
raw | patch | inline | side by side (parent: eabb0bf)
author | Frank Lichtenheld <frank@lichtenheld.de> | |
Fri, 13 Apr 2007 16:02:31 +0000 (18:02 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 14 Apr 2007 02:39:28 +0000 (19:39 -0700) |
Text shamelessly stolen from the 1.5.1 release notes.
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/config.txt | patch | blob | history |
index 061c585629fe6ff18188ba4067ee912cd169091f..38831bc906056e0ac5a219268e6796b727941481 100644 (file)
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
the working copy are ignored; useful on broken filesystems like FAT.
See gitlink:git-update-index[1]. True by default.
+core.autocrlf::
+ If true, makes git convert `CRLF` at the end of lines in text files to
+ `LF` when reading from the filesystem, and convert in reverse when
+ writing to the filesystem. The variable can be set to
+ 'input', in which case the conversion happens only while
+ reading from the filesystem but files are written out with
+ `LF` at the end of lines. Currently, which paths to consider
+ "text" (i.e. be subjected to the autocrlf mechanism) is
+ decided purely based on the contents.
+
core.symlinks::
If false, symbolic links are checked out as small plain files that
contain the link text. gitlink:git-update-index[1] and