25 lines
454 B
Plaintext
25 lines
454 B
Plaintext
# Git line ending configuration
|
|
# Ensure consistent line endings across platforms
|
|
|
|
# Set all files to use LF by default (Unix-style)
|
|
* text=auto
|
|
|
|
# Force LF for markdown files
|
|
*.md text eol=lf
|
|
|
|
# Force LF for other text files
|
|
*.txt text eol=lf
|
|
*.mdwn text eol=lf
|
|
*.markdown text eol=lf
|
|
|
|
# Binary files should not be converted
|
|
*.png binary
|
|
*.jpg binary
|
|
*.jpeg binary
|
|
*.gif binary
|
|
*.ico binary
|
|
*.pdf binary
|
|
*.zip binary
|
|
*.7z binary
|
|
*.tar binary
|
|
*.gz binary |