In the gitattributes you can specify that a specific file type should be treated as binary, e.g.
*.myExt binary
From:
http://git-scm.com/docs/gitattributes
This means that no line ending conversion will be applied or that textual diffs will be produced.
But what happens if I need to merge the content anyway? Will git try to merge it or simply skip all file types listed as binary
in the gitattributes file?
Its not clear from: http://git-scm.com/docs/gitattributes
if file types marked as binary will be merged (meaning that git will try to do a merge/report possible conflict or simply skip this type off file).