-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
55 lines (50 loc) · 1014 Bytes
/
.gitattributes
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
*.pbxproj binary merge=union
# Consistent line endings for text files
*.c text
*.cpp text
*.h text
*.pxd text diff=python eol=lf
*.py text diff=python eol=lf
*.py3 text diff=python eol=lf
*.pyw text diff=python eol=lf
*.pyx text diff=python eol=lf
*.pyz text diff=python eol=lf
*.pyi text diff=python eol=lf
*.db binary
*.p binary
*.pkl binary
*.pickle binary
*.pyc binary export-ignore
*.pyo binary export-ignore
*.pyd binary
*.java text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.css text eol=lf
*.html text eol=lf
*.md text eol=lf
*.sh text eol=lf
*.xml text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Treat image files as binary
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
# Avoid diff for large files
*.zip binary
*.tar.gz binary
*.jar binary
*.exe binary
# Avoid diff for compiled files
*.o binary
*.a binary
*.out binary
*.so binary
*.dll binary
*.class binary
# Ignore MacOS specific files
.DS_Store export-ignore