-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitattributes
More file actions
45 lines (45 loc) · 1.05 KB
/
.gitattributes
File metadata and controls
45 lines (45 loc) · 1.05 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
# Handle line endings automatically for files detected as text and leave all files detected as binary untouched.
* text=auto
# These files are text and should be normalized (Convert crlf => lf)
*.md text
*.MD text
*.dat text
*.DAT text
*.txt text
*.TXT text
*.xml text
*.XML text
# Documents
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
# Graphics
*.png binary
*.jpg filter=lfs diff=lfs merge=lfs -text
*.jpeg binary
*.gif binary
*.tif binary
*.tiff binary
*.ico binary
# Media files
*.avi filter=lfs diff=lfs merge=lfs -text
*.mp4 filter=lfs diff=lfs merge=lfs -text
# Source files
*.pxd text
*.py text
*.py3 text
*.pyw text
*.pyx text
*.csv filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
# Model Files
*.pkl filter=lfs diff=lfs merge=lfs -text
*.gensim filter=lfs diff=lfs merge=lfs -text
*.npy filter=lfs diff=lfs merge=lfs -text