We're working on a project with a few people having a Mac, and I am running on Windows. We get some problems with the linebreaks.
I read on GitHub that I could add this:
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
Into .gitattributes
But should I commit that file to GitHub so the other people with Macs get the same settings?
If it matters, we're coding websites. (PHP, JavaScript files, and stuff).
For the record, I'm the only one with Windows... So yeah, what can I do?