From dd6ab17a84fced9ead0ffd9f215a45ad40395a38 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Sun, 24 Feb 2008 17:29:04 +0100 Subject: [PATCH] Set default core.autocrlf=true Official git recently learnt to warn about irreversible CRLF conversions. So it is time to switch on core.autocrlf=true on Windows. This commit modifies /etc/gitconfig accordingly. Note, msysgit developers should override this changed default by explicitly setting core.autocrlf=false in msysgit and msysgit/git. Msysgit is not (yet) a real cross-platform project but more like a Unix project. Signed-off-by: Steffen Prohaska --- etc/gitconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/etc/gitconfig b/etc/gitconfig index c12f5b49..251088c3 100644 --- a/etc/gitconfig +++ b/etc/gitconfig @@ -1,5 +1,6 @@ [core] symlinks = false + autocrlf = true [color] diff = auto [pack] -- 2.11.4.GIT