Normalize .gitattributes too

For some reason unknown to me .gitattributes was not picked up when 
fixing the linefeed settings. Fix it manually.
This commit is contained in:
Felix Kauselmann 2018-07-06 11:56:37 +02:00
parent d5a11fb16b
commit 37d9e54056

174
.gitattributes vendored
View File

@ -1,87 +1,87 @@
# List files and directories to exclude from git archive # List files and directories to exclude from git archive
/dependencies/pdfium export-ignore /dependencies/pdfium export-ignore
/dependencies/poppler export-ignore /dependencies/poppler export-ignore
/dependencies/qrencode export-ignore /dependencies/qrencode export-ignore
/dependencies/unarr export-ignore /dependencies/unarr export-ignore
/dependencies/create-dmg export-ignore /dependencies/create-dmg export-ignore
.gitignore export-ignore .gitignore export-ignore
.gitattributes export-ignore .gitattributes export-ignore
# Auto detect text files and perform LF normalization # Auto detect text files and perform LF normalization
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/ # http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
* text=auto * text=auto
# #
# The above will handle all files NOT found below # The above will handle all files NOT found below
# #
# Documents # Documents
*.doc diff=astextplain *.doc diff=astextplain
*.DOC diff=astextplain *.DOC diff=astextplain
*.docx diff=astextplain *.docx diff=astextplain
*.DOCX diff=astextplain *.DOCX diff=astextplain
*.dot diff=astextplain *.dot diff=astextplain
*.DOT diff=astextplain *.DOT diff=astextplain
*.pdf diff=astextplain *.pdf diff=astextplain
*.PDF diff=astextplain *.PDF diff=astextplain
*.rtf diff=astextplain *.rtf diff=astextplain
*.RTF diff=astextplain *.RTF diff=astextplain
*.md text *.md text
*.adoc text *.adoc text
*.textile text *.textile text
*.mustache text *.mustache text
*.csv text *.csv text
*.tab text *.tab text
*.tsv text *.tsv text
*.sql text *.sql text
# Graphics # Graphics
*.png binary *.png binary
*.jpg binary *.jpg binary
*.jpeg binary *.jpeg binary
*.gif binary *.gif binary
*.tif binary *.tif binary
*.tiff binary *.tiff binary
*.ico binary *.ico binary
# SVG treated as an asset (binary) by default. If you want to treat it as text, # SVG treated as an asset (binary) by default. If you want to treat it as text,
# comment-out the following line and uncomment the line after. # comment-out the following line and uncomment the line after.
*.svg binary *.svg binary
#*.svg text #*.svg text
*.eps binary *.eps binary
# Sources # Sources
*.c text *.c text
*.cc text *.cc text
*.cxx text *.cxx text
*.cpp text *.cpp text
*.c++ text *.c++ text
*.hpp text *.hpp text
*.h text *.h text
*.h++ text *.h++ text
*.hh text *.hh text
# Compiled Object files # Compiled Object files
*.slo binary *.slo binary
*.lo binary *.lo binary
*.o binary *.o binary
*.obj binary *.obj binary
# Precompiled Headers # Precompiled Headers
*.gch binary *.gch binary
*.pch binary *.pch binary
# Compiled Dynamic libraries # Compiled Dynamic libraries
*.so binary *.so binary
*.dylib binary *.dylib binary
*.dll binary *.dll binary
# Compiled Static libraries # Compiled Static libraries
*.lai binary *.lai binary
*.la binary *.la binary
*.a binary *.a binary
*.lib binary *.lib binary
# Executables # Executables
*.exe binary *.exe binary
*.out binary *.out binary
*.app binary *.app binary