Ok, I have a git repo. All clones running same-ish version of git (pretty much latest).

  • 'origin' is on GitHub.com
  • clones on various CentOS servers, no problems with line-endings encountered
  • clone on my Mac OS system (using git via cmd line, and/or Tower GUI), no problems with line-endings either..

BUT

  • another clone on a Ubuntu server, git-diff thinks the entire file has changed when I make any changes to a file

So, what must I do with git-config on this one Ubuntu box to sort the problem? I've read various articles (and git-config docs) on the subject, but it's not entirely clear what the decisive one-hit fix is.. ?

link|improve this question

67% accept rate
feedback

1 Answer

You probably need to turn core.autocrlf off.

link|improve this answer
Is core.autocrlf on by default then? ..because i've not turned it on. Also, once I get the crlf config right, would I need to re-checkout my entire working copy with 'git checkout HEAD' before making further changes to the files? – Jonny Nott Apr 5 '11 at 13:17
I don't know if it's on by default on Ubuntu, but the only reason I can see why the crlf would change is that it is on. As for whether you need to check out again, I would guess you would, but git status will tell you that. – rlc Apr 5 '11 at 13:21
Ok, I don't have any git-config directives set either globally or for this repo itself. 'git config list' returns nothing. So it must be to do with how the OS is dealing with the line-endings. Any ideas how to work around this? BTW to edit the files, I'm opening them over FTP and editing with TextMate on Mac, then saving back via FTP. – Jonny Nott Apr 5 '11 at 13:29
oh, that FTP bit may be an important detail: do any of the files that you don't download and re-upload over FTP have every line change? Do you transfer the files in binary (image) mode? – rlc Apr 5 '11 at 13:33
1  
Aha, I seem to have solved the problem by doing the opposite - turning core.autocrlf ON ;) 'git config --global core.autocrlf true' – Jonny Nott Apr 5 '11 at 14:07
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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