11 lines
322 B
Plaintext
11 lines
322 B
Plaintext
# Git to autodetect text files and normalise their line endings to LF when they are checked into your repository.
|
|
* text=auto
|
|
|
|
# git won't try to convert this files
|
|
*.pem -text
|
|
*.der -text
|
|
test/static/**/*.xml -text
|
|
|
|
# These files are text and should be normalized (Convert crlf => lf)
|
|
*.gitattributes text
|
|
.gitignore text |