Some MYD files (e.g. in mysql-test/std_data) could erroneously be

treated by git as text files.

Marking all MyISAM files as binary in .gitattributes: (*.frm, *.MYD, *.MYI)
This commit is contained in:
Alexander Barkov 2015-06-04 18:51:30 +04:00
parent 9da8a8f946
commit 08fa02cf22

3
.gitattributes vendored
View file

@ -16,6 +16,9 @@
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.frm binary
*.MYD binary
*.MYI binary
*.c diff=cpp
*.h diff=cpp