29 lines
610 B
Plaintext
29 lines
610 B
Plaintext
|
# Set the default behavior, in case people don't have core.autocrlf set.
|
||
|
* text=auto
|
||
|
|
||
|
# Explicitly declare text files you want to always be normalized and converted
|
||
|
# to native line endings on checkout.
|
||
|
*.c text
|
||
|
*.cpp text
|
||
|
*.gdh text
|
||
|
*.gdl text
|
||
|
*.h text
|
||
|
*.json text
|
||
|
*.log text
|
||
|
*.md text
|
||
|
*.sh text
|
||
|
*.svg text
|
||
|
*.txt text
|
||
|
*.ttf binary
|
||
|
*.xml text
|
||
|
|
||
|
# Denote all files that are truly binary and should not be modified.
|
||
|
*.png binary
|
||
|
|
||
|
# Files to exclude from git archive
|
||
|
.gitattributes export-ignore
|
||
|
.gitignore export-ignore
|
||
|
|
||
|
# Exclude the font sources in the test/fonts dir
|
||
|
src/graphite2/tests/fonts/*/ export-ignore
|