> I'd rather not let git change any files, many of which are PHP that run on > Apache > I think I remember reading that this is a config option that gets swithced > on by default on windows (which we are running git on) > > how do I switch it off ? git config core.autocrlf false or if you want to ensure that all your text files have only LF then git config core.autocrlf input or if you want to disable conversion for some specific files then you can use 'crlf' attribute. See 'gitattributes' for more information. http://www.kernel.org/pub/software/scm/git/docs/gitattributes.html Dmitry -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html