mirror of
https://github.com/gitattributes/gitattributes.git
synced 2025-01-22 00:08:52 -05:00
22 lines
563 B
Plaintext
22 lines
563 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
|
||
|
#
|
||
|
|
||
|
# Standard to msysgit
|
||
|
*.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
|