# Let git decide the line break format and standardize it (LF vs. CR/LF)
* text=auto

# Treat as plain text :
.gitattributes text
.gitignore text
*.txt text
*.md text
*.py text
*.po text
*.xml text

# Treat as binary files :
*.pyc binary
*.pyo binary
*.pyd binary
*.p binary
* pkl binary
*.db binary
*.jpg binary
*.jpeg binary
*.png binary
*.tif binary
*.tiff binary
*.ico binary
*.gif binary


# Plain text diffs
.gitattributes diff=astextplain
.gitignore diff=astextplain
*.txt diff=astextplain
*.md diff=astextplain
*.po diff=astextplain
*.xml diff=astextplain

# Language specific diffs
*.py diff=python
