diff options
author | Alexander Barkov <bar@mariadb.org> | 2015-06-04 18:51:30 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2015-06-04 18:51:30 +0400 |
commit | 08fa02cf227a632ed787357357d6116b72c6d5e6 (patch) | |
tree | abd178e76703f0554d344acbf216f72dbea24394 /.gitattributes | |
parent | 9da8a8f94690704e069b2cc99218384b6bbbd95a (diff) | |
download | mariadb-git-08fa02cf227a632ed787357357d6116b72c6d5e6.tar.gz |
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)
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 60b9a3481aa..342dad5646b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 |