Best practices for cross platform git config?
- by Bas Bossink
Context
A number of my application user configuration files are kept in a git repository for easy sharing across multiple machines and multiple platforms. Amongst these configuration files is .gitconfig which contains the following settings for handling the carriage return linefeed characters
[core]
autocrlf = true
safecrlf = false
…