Quellcode durchsuchen

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 vor 8 Jahren
Ursprung
Commit
c9c68980f3
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      .gitattributes

+ 2 - 0
.gitattributes

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