-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
50 lines (44 loc) · 849 Bytes
/
.gitattributes
File metadata and controls
50 lines (44 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Git Attributes Configuration
# Ensures consistent line endings and file handling across platforms
# Auto-detect text files and normalize line endings to LF in repository
* text=auto
# Source code - always use LF
*.py text eol=lf
*.md text eol=lf
*.json text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
*.txt text eol=lf
*.sh text eol=lf
# Windows batch files - must use CRLF
*.bat text eol=crlf
# Binary files - never modify
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mp3 binary
*.wav binary
*.ogg binary
*.flac binary
*.exe binary
*.dll binary
*.so binary
*.dylib binary
*.zip binary
*.tar binary
*.gz binary
*.7z binary
*.pdf binary
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.pyc binary
*.pyd binary
# Python wheels and eggs
*.egg binary
*.whl binary
# Archives created by build
releases/*.zip binary