Просмотр исходного кода

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!
Iain Patterson 8 лет назад
Родитель
Сommit
c9c68980f3
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      .gitattributes

+ 2 - 0
.gitattributes

@@ -0,0 +1,2 @@
+*.mc diff
+*.rc diff