I've been trying to set specific files to always use lf and not crlf regardless of autocrlf on the local system.

I tried creating a .gitattributes at the root of the project that only contained SquishIt.Tests/js/*.js eol=lf and I also tried SquishIt.Tests/js/ eol=lf. I pushed both of these attempts to my remote and then tried cloning it locally twice. The files under /js/ always showed up with CR+LF in both cases as autocrlf is on globally for me.

I'm on a Windows machine, just in case it was unclear. Is what I'm attempting to achieve even possible?

link|improve this question
feedback

1 Answer

I would set autocrlf to false and set core.whitespace to cr-at-eol. It's better to let your editors deal with the difference in line endings. Let git store them as they are.

Hope this helps.

link|improve this answer
There are unit tests that read back the contents of files and the files must maintain its normalized line endings across all platforms regardless of autocrlf settings as to properly ensure the tests pass. I can't control whether or not contributors have these settings. – Akkuma Jul 13 '11 at 14:16
Make the tests more resilient. I would not want anything like vcs interfere with what a file contains. – Adam Dymitruk Jul 13 '11 at 17:42
1  
Thanks, I figured out a way to make the tests more resilient without having to worry about the vcs anymore. For those interested, I basically read the file in, normalize the line endings, and rewrite the file to guarantee it has the correct line endings. – Akkuma Jul 13 '11 at 18:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.