search for: autocrlf

Displaying 4 results from an estimated 4 matches for "autocrlf".

Did you mean: autoconf
2020 Jan 16
3
Git autocrlf for Windows - why does the Getting Started guide say to use false?
Hi all, TL;DR - should we recommend core.autocrlf=input instead of core.autocrlf=false on Windows? I recently switched from doing pre-commit builds and tests from my Ubuntu VM, to my Windows machine where I do all my development. I was aware that line endings is an issue, so made sure to set core.autocrlf=false as directed in the Getting Started...
2020 Jan 16
3
Git autocrlf for Windows - why does the Getting Started guide say to use false?
Right, my understanding is that files that specifically need CRLF should say so via .gitattributes somewhere. autocrlf=false ought to work if your Windows editor doesn’t (or can be persuaded not to) introduce CRLFs. I’ve observed that the Visual Studio editor will detect the line-ending style of the file you’re editing, and imitate it. This works great until you create a new file. 😝 So I’ve learned to “create” a...
2017 Feb 21
2
Problem with svn:eol-style
...lvm.org/docs/GettingStarted.html#for-developers-to-work-with-a-git-monorepo] and this morning I ran into an issue where I am unable to submit using the mono repo. I traced this down to the fact that many files explicitly have the property svn:eol-style set to native. On the git side, we have core.autocrlf=false, which means that git will checkout as-is, commit as-is. So if a file has LF endings in the repo, git will check it out with LF line endings, and then on Windows, the local SVN clone will check out according to the value of the property, which will be CRLF. Then `git llvm push` won't be...
2018 May 13
3
A Fresh Start with LLVM
Hi LLVM Devs, I recently finished working for Intel/Movidius, and thought that before I start working on some new LLVM project, that this would be a good time to discard all of my old practices (which began with v2.7, and has gathered crud over the years) and restart with a brand new fresh LLVM approach directly from head. In preparation for doing this, I would like to know what is the