Handling line endings on Windows with git

< 1 min. read Note to self: When collaborating on different platforms, one of the most common issue is line endings – LF on Mac/Linux and CRLF on Windows. With git, you can address this issue in the following ways: 1) Configure Global Settings 1) Windows users: git config –global core.autocrlf true 2) Mac/Linux users: git config –global core.autocrlf […]