On Mon, Aug 27, 2018 at 09:10:33AM -0500, Robert Dailey wrote: > Is there an 'auto' setting for the 'core.autocrlf' config? Reason I > ask is, I want that setting to be 'input' on linux but 'true' on > Windows. I have a global .gitconfig that I sync across different > platforms with Google Drive, and I hate to manage 2 copies of it on > each platform (linux and Windows). If there's some way to make the > line ending configuration the same between both, that would be > awesome. > > Note that I do rely mostly on git attributes files for this, however > not all upstream repositories have one, and I don't always have > permission to create one there. How many repos do you look at, and how big is the "pain level" here? Would it be possible to submit pull-requests ? > In those cases, when it falls back to > configuration for line ending management, I want it to be > automatically configured based on the host platform. There is git config core.eol native But that is already the default, and it needs the 'text' attribute to be set (or auto), the simplest solution is to have * text=auto in .gitattributes > > Any advice is appreciated here. Unfortunately Google isn't much help > on this topic, Stack Overflow is a swamp full of different information > and none of it seems authoritative. Out of interest, not to blame anybody: Did you ever look at https://git-scm.com/docs/git-config The authoritative answer is in the Git project itself, under Documentation/config.txt In summary, if I understand you right, the solution would be to use .gitattributes in every project. HTH