.gitattributes (839B)
1 # Set the default behavior, in case people don't have core.autocrlf set. 2 * text=auto 3 4 # Explicitly declare text files you want to always be normalized and converted 5 # to native line endings on checkout. 6 *.c text 7 *.h text 8 *.cpp text 9 *.hpp text 10 *.fth text 11 *.java text 12 *.f text 13 *.txt text 14 *.dox text 15 *.m text 16 17 # Declare files that will always have CRLF line endings on checkout. 18 *.sln text eol=crlf 19 *.def text eol=crlf 20 *.dsp text eol=crlf 21 *.dsw text eol=crlf 22 *.vcproj text eol=crlf 23 *.sln text eol=crlf 24 *.doc text eol=crlf 25 *.bat text eol=crlf 26 27 # Denote all files that are truly binary and should not be modified. 28 *.dic binary 29 *.odt binary 30 *.pdf binary 31 *.png binary 32 *.jpg binary 33 *.wav binary 34 *.la binary 35 config.guess binary 36 config.status binary 37 config.sub binary 38 configure binary 39 depcomp binary 40 install-sh binary 41 libtool binary 42 missing binary 43