1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# Set the default behavior, in case people don't have core.autocrlf set.
# All systems will change to LF on commit if the file isn't present
# in the index with CRLF already.
* text=auto
# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.rb text
*.h text
*.c text
*.java text
*.md text
*.txt text
*.sj text
*.rake text
/ChangeLog text
/Rakefile text
/ext/MANIFEST text
/ext/depend text
# Denote all files that are truly binary and should not be modified.
*.class binary
*.jar binary
|