From: Iain Patterson Date: Sun, 28 Feb 2016 09:01:09 +0000 (+0000) Subject: Help git figure out how to diff .mc and .rc files. X-Git-Url: http://git.iain.cx/?a=commitdiff_plain;h=c9c68980f322acce5ba5b58a495f0535e58f67bf;hp=c9c68980f322acce5ba5b58a495f0535e58f67bf;p=nssm.git Help git figure out how to diff .mc and .rc files. Visual Studio wants .mc and .rc files to be UTF-16LE, which git thinks are binary. Use .gitattributes to force treating them as text only when diffing, explicitly not handling them as text when submitting as they must retain their encoding to keep Visual Studio happy. Thanks to Mathias Breiner for proposing the use of .gitattributes in the repo. I had the rules in .git/info/exclude in my working copy for a long time and forgot about the issue! ---