Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Running git on a Windows XP machine, using bash. I exported my project from SVN, and then cloned a bare repository.

I then pasted the export into the bare repositories directory, and did a:

git add -A

I then got a list of messages saying:

LF will be replaced by CRLF

What are the ramifications of this conversion? This is a .NET solution in Visual Studio.

share|improve this question
7  
@apphacker because standardising line-endings is less annoying than having to change them yourself when diffing two files. (And of course, if you disagree, then you can keep the core.autocrlf feature off). – RJFalconer Dec 28 '09 at 11:42
why would the line endings be different unless the entire line was touched – Bjorn Tipling Dec 31 '09 at 7:48
I often touch lots of lines, because I'm experimenting with different ideas, adding trace statements to see how they work, etc. Then I might want to only commit a change to two or three lines and have git completely ignore the others because I had put them back they way I found them (or so I thought). – MatrixFrog Nov 25 '10 at 17:29
An upstream discussion of the same issue: kerneltrap.org/mailarchive/git/2008/4/16/1450834/thread – Tim Abell Apr 17 '12 at 16:00
1  
wow dude. Do you ever accept ansa's? – Robert Dec 31 '12 at 19:57

7 Answers

Git has two modes of how it treats line endings:

$ git config core.autocrlf
# that command will print "true" or "false" or "input"

You can set the mode to use by adding an additional parameter of true or false to the above command line.

If core.autocrlf is set to true, that means that any time you add a file to the git repo that git thinks is a text file, it will turn all CRLF line endings to just LF before it stores it in the commit. Whenever you git checkout something, all text files automatically will have their LF line endings converted to CRLF endings. This allows development of a project across platforms that use different line-ending styles without commits being very noisy because each editor changes the line ending style as the line ending style is always consistently LF.

The side-effect of this convenient conversion, and this is what the warning you're seeing is about, is that if a text file you authored originally had LF endings instead of CRLF, it will be stored with LF as usual, but when checked out later it will have CRLF endings. For normal text files this is usually just fine. The warning is a "for your information" in this case, but in case git incorrectly assesses a binary file to be a text file, it is an important warning because git would then be corrupting your binary file.

If core.autocrlf is set to false, no line-ending conversion is ever performed, so text files are checked in as-is. This usually works ok, as long as all your developers are either on Linux or all on Windows. But in my experience I still tend to get text files with mixed line endings that end up causing problems.

My personal preference is to leave the setting turned ON, as a Windows developer.

See http://kernel.org/pub/software/scm/git/docs/git-config.html for updated info that includes the "input" value.

share|improve this answer
25  
As said here (stackoverflow.com/questions/1249932/…), I would respectfully disagree and leave that setting to OFF (and use Notepad++ or any other editor able to deal with -- and leave as it is -- whatever end line character it finds) – VonC Dec 28 '09 at 7:57
8  
I like this answer, and prefer to leave autocrlf set to true. As an alternative, is there a way to kill the warning messages automatically? – Krisc Jan 28 '11 at 17:42
3  
It would be nice to augment this well-written answer with a comparison to the core.eol settings, perhaps in concert with .gitattributes configuration. I've been trying to figure out the differences and overlaps through experimentation, and it's very confusing. – seh Apr 20 '11 at 0:32
1  
As seh points out, core.autocrlf isn't the only thing that can cause git to change line endings. Among other things, run "git help attributes" and search for "end-of-line normalization"; that document is quite thorough, though you might need to supplemental googling to understand it all. – Chris Mar 29 '12 at 8:12
2  
For a more permanent solution change your .gitconfig to: [core] autocrlf = false – Kaizen Aug 27 '12 at 21:05
show 4 more comments

dos2unix is available in windows with gitbash. use the following command:

dos2unix -D filename
share|improve this answer
6  
What does it do? – SalmanPK Apr 26 '12 at 6:08
Here's what the help option says: ` --u2d, -D perform UNIX -> DOS conversion` – Larry Battle Jul 13 '12 at 8:20
@LarryBattle u2d and d2u is not the same thing I believe. – Rifat Jul 13 '12 at 12:38
@Rifat I'm confused. Your comment says that dos2unix -D will convert windows line endings to linux line endings. Isn't that the same as DOS(CRLF) -> UNIX(LF) conversion. However dos2unix -h states that -D will perform UNIX(LF) -> DOS(CRLF) conversion. dos2unix More info: gopherproxy.meulie.net/sdf.org/0/users/pmyshkin/dos2unix – Larry Battle Jul 13 '12 at 17:10
@LarryBattle Yes, you are right about -D. Actually, I posted the answer when I was a windows user. And, I made the comment more than a year later when I'm a mac user :D BTW, Thanks for the clarification. – Rifat Jul 13 '12 at 18:18
show 4 more comments

I had this problem too.

SVN doesn't do any line ending conversion, so files are committed with CRLF line endings intact. If you then use git-svn to put the project into git then the CRLF endings persist across into the git repository, which is not the state git expects to find itself in - the default being to only have unix/linux (LF) line endings checked in.

When you then check out the files on windows, the autocrlf conversion leaves the files intact (as they already have the correct endings for the current platform), however the process that decides whether there is a difference with the checked in files performs the reverse conversion before comparing, resulting in comparing what it thinks is an LF in the checked out file with an unexpected CRLF in the repository.

As far as I can see your choices are:

  1. Re-import your code into a new git repository without using git-svn, this will mean line endings are converted in the intial git commit --all
  2. Set autocrlf to false, and ignore the fact that the line endings are not in git's preferred style
  3. Check out your files with autocrlf off, fix all the line endings, check everything back in, and turn it back on again.
  4. Rewrite your repository's history so that the original commit no longer contains the CRLF that git wasn't expecting. (The usual caveats about history rewriting apply)

Footnote: if you choose option #2 then my experience is that some of the ancillary tools (rebase, patch etc) do not cope with CRLF files and you will end up sooner or later with files with a mix of CRLF and LF (inconsistent line endings). I know of no way of getting the best of both.

share|improve this answer
I think there's a 4th option to add to your list, assuming one can afford to rewrite history: You can take a git repo that you initially created with git-svn, and rewrite its history to no longer have CRLF linefeeds. This would give you normalized linefeeds extending backwards through your whole svn history. User keo presents one solution at stackoverflow.com/a/1060828/64257. – Chris Mar 29 '12 at 8:45
added. ta very much – Tim Abell Mar 29 '12 at 14:33

In vim open the file (e.g.: :e YOURFILEENTER), then

:set noendofline binary
:wq
share|improve this answer
Simply editing with vim would leave all line ending intact. – Eye Dec 6 '12 at 3:22
Thank you for this solution – Jason Palmer Feb 7 at 2:01

Removing the below from the ~/.gitattributes file

* text=auto

will prevent git from checking line-endings in the first-place.

share|improve this answer
1  
Incorrect. That line, if present, will override the configuration of core.autocrlf. If that is set to 'true', then no, removing that line won't prevent git from checking line endings. – Arafangion Feb 11 at 2:38

I don't know much about git on Windows, but...

Appears to me that git is converting the return format to match that of the running platform (Windows). CRLF is the default return format in Windows, while LF is the default return format for most other OSes.

Chances are, the return format will be adjusted properly when the code is moved to another system. I also reckon git is smart enough to keep binary files intact rather than trying to convert LFs to CRLFs in, say, JPEGs.

In summary, you probably don't need to fret too much over this conversion. However, if you go to archive your project as a tarball, fellow coders would probably appreciate having LF line terminators rather than CRLF. Depending on how much you care (and depending on you not using Notepad), you might want to set git to use LF returns if you can :)

Appendix: CR is ASCII code 13, LF is ASCII code 10. Thus, CRLF is two bytes, while LF is one.

share|improve this answer

In a GNU/Linux shell prompt, dos2unix & unix2dos commands allow you to easely convert/format your files coming from MS Windows

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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