I'm using GitHub Desktop on Windows 10. I want to setup a git repository which will contain some text files (.md or .adoc) and Freemind mindmaps (.mm). Freemind uses an XML-based file format with Unix-style line feeds (LF).
Over the last 4 hours, I think I have read every StackOverflow discussion and every git documentation about EOL normalisation one can find online - and it still drives me crazy! Many discussions seem to be outdated and opinions seem to contradict each other. Here's how I got so far:
- I have left
core.autocrlf
andcore.safecrlf
at their default values - As recommended I'm using a
.gitattributes
file with* text=auto
- I'm fine with auto conversion for my text files. - To preserve the LF's of my .mm files I added
*.mm text eol=LF
What's puzzling me is this warning:
> git add Mindmap.mm
warning: LF will be replaced by CRLF in Mindmap.mm.
The file will have its original line endings in your working directory.
As far as I understand it * text=auto
is equivalent to core.autocrlf=true
and ensures that all EOL's are converted to LF at committing - So LF->LF in this case. And *.mm text eol=LF
ensures that LF's are preserved at checkout - LF->LF in the other direction, too. No CRLF's involved! So why is Git warning me that some conversion will result in CRLF's?
Question 1: I'd like to make sure that I won't get cross-platform problems with UNIX users when I'll go public with my project on GitHub. What is the best practice for my case? If I did everything all right, can I ignore the warning?
Question 2: Under certain circumstances .mm files can also contain CRLF's. I could, of course, handle them as binary files, but then I would not see any differences in GitHub Desktop anymore. Is there a way to still treat them as text files, while preserving mixed line feeds (LF and CRLF)?
Any hint is greatly appreciated!
Unsetting
text
for.mm
files will stop git from doingcrlf
conversions on them but it won't start treating them as binary files so git-diff and other features will still behave correctly.In your .gitattributes file:
That should solve your second question. However, because git won't be enforcing the line endings for
.mm
files it likely will cause some headaches when you go public and contributors start modifying them on OS-X and Linux. If you can describe the rules for.mm
line endings maybe the config can be tweaked or perhaps a commit-hook can help you enforce it, other than that I don't see how you can solve both your first and second questions at the same time.