Chris Hillery | d6f7828 | 2015-04-30 17:07:05 -0700 | [diff] [blame] | 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 | *.java text |
| 7 | *.xml text |
| 8 | *.xsd text |
| 9 | |
| 10 | # Declare files that will always have CRLF line endings on checkout. |
| 11 | *.crlf text eol=crlf |
| 12 | |
| 13 | # Declare files that will always have CR line endings on checkout. |
| 14 | *.cr text eol=cr |
| 15 | |
| 16 | # Declare files that will always have LF line endings on checkout. |
| 17 | *.lf test eol=lf |