mirror of
https://github.com/gitattributes/gitattributes.git
synced 2025-01-22 16:28:24 -05:00
9c84749975
Signed-off-by: Alexander Karatarakis <alex@karatarakis.com>
22 lines
553 B
Plaintext
22 lines
553 B
Plaintext
#common settings that generally should always be used with your language specific settings
|
|
|
|
# Auto detect text files and perform LF normalization
|
|
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
|
|
* text=auto
|
|
|
|
#
|
|
# The above will handle all files NOT found below
|
|
#
|
|
|
|
# Documents
|
|
*.doc diff=astextplain
|
|
*.DOC diff=astextplain
|
|
*.docx diff=astextplain
|
|
*.DOCX diff=astextplain
|
|
*.dot diff=astextplain
|
|
*.DOT diff=astextplain
|
|
*.pdf diff=astextplain
|
|
*.PDF diff=astextplain
|
|
*.rtf diff=astextplain
|
|
*.RTF diff=astextplain
|