I've got multi platform based project, and from time to time, Some common data files that are formatted for one architecture, breaks compilation on the other arch.
For example, an XML file used by multiple platforms (macOS/Windows) and have newline formatted for single arch only (for example : \r\n
)
The question is whether I can let git handle this and show each file in the correct formatting according to the architecture ?
Thanks !