-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
83 lines (83 loc) · 2.32 KB
/
.gitattributes
File metadata and controls
83 lines (83 loc) · 2.32 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs diff=csharp
# Source code
*.py text eol=lf diff=python
*.js text eol=lf
*.css text eol=lf
*.html text eol=lf
*.json text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.xml text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.sql text eol=lf
# Documentation
*.markdown text eol=lf
*.mdown text eol=lf
*.mkd text eol=lf
# Configuration files
*.ini text eol=lf
*.cfg text eol=lf
*.conf text eol=lf
*.config text eol=lf
requirements*.txt text eol=lf
Dockerfile* text eol=lf
*.dockerignore text eol=lf
# Shell scripts
*.sh text eol=lf
*.bash text eol=lf
# Python specific
*.py text eol=lf
*.pyx text eol=lf
*.pyd binary
*.so binary
*.egg binary
*.pyc binary
*.pyo binary
# Django specific
*.po text eol=lf
*.pot text eol=lf
# Images - treat as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg text eol=lf
# Archives - treat as binary
*.zip binary
*.tar binary
*.gz binary
*.bz2 binary
*.xz binary
# Large files for LFS
*.pkl filter=lfs diff=lfs merge=lfs -text
*.model filter=lfs diff=lfs merge=lfs -text
*.bin filter=lfs diff=lfs merge=lfs -text
*.h5 filter=lfs diff=lfs merge=lfs -text
*.onnx filter=lfs diff=lfs merge=lfs -text
*.weights filter=lfs diff=lfs merge=lfs -text
# Database files
*.db filter=lfs diff=lfs merge=lfs -text
*.sqlite filter=lfs diff=lfs merge=lfs -text
*.sqlite3 filter=lfs diff=lfs merge=lfs -text
# Large datasets
*.csv filter=lfs diff=lfs merge=lfs -text
*.tsv filter=lfs diff=lfs merge=lfs -text
*.parquet filter=lfs diff=lfs merge=lfs -text
# Media files
*.mp4 filter=lfs diff=lfs merge=lfs -text
*.mov filter=lfs diff=lfs merge=lfs -text
*.avi filter=lfs diff=lfs merge=lfs -text
*.mp3 filter=lfs diff=lfs merge=lfs -text
*.wav filter=lfs diff=lfs merge=lfs -text
# Exclude certain files from export
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore
.aider* export-ignore
.vscode/ export-ignore
*.sqlite* filter=lfs diff=lfs merge=lfs -text