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
These settings also gets applied on a GNU/Linux platform which causes obscure errors.
What are some best practices for handling these platform specific differences in configuration files?
I realize this problem could be solved by having a branch for each platform and keeping the common stuff in master and merging with the platform branch when master moves forward. I'm wondering if there are any easier solutions to this problem?
Never turn autocrlf
on, it causes nothing but headaches and sorrows.
There's no excuse to use \r\n
on windows, all decent editors (by definition) can handle \n
.