-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitattributes
More file actions
43 lines (37 loc) · 827 Bytes
/
.gitattributes
File metadata and controls
43 lines (37 loc) · 827 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
# .gitattributes
# Enforce Unix-style (LF) line endings for all text files
* text eol=lf
# Common source code files
*.py text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.hpp text eol=lf
*.c text eol=lf
*.cc text eol=lf
# Configuration and documentation
*.txt text eol=lf
*.md text eol=lf
*.tex text eol=lf
*.yaml text eol=lf
*.yml text eol=lf
*.json text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
*.csv text eol=lf
*.toml text eol=lf
# Scripts
*.sh text eol=lf
*.bash text eol=lf
# Requirements and environments
requirements*.txt text eol=lf
environment.yml text eol=lf
# Binary files (don’t modify line endings)
*.png binary
*.jpg binary
*.jpeg binary
*.pdf binary
*.zip binary
*.exe binary
*.dll binary
*.so binary
*.pkl binary