-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
42 lines (39 loc) · 814 Bytes
/
.gitattributes
File metadata and controls
42 lines (39 loc) · 814 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
# Set the default behavior, convert to native line endings on checkout
* text=auto
# Declare files that will always have CRLF line endings on checkout.
*.bat text eol=crlf
*.cmd text eol=crlf
# Declare files that will always have LF line endings on checkout.
*.sh text eol=lf
# Denote all files that are truly binary and should not be modified.
# Miscellaneous
*.bin binary
*.dat binary
*.dll binary
*.exe binary
*.ttf binary
*.xtextbin binary
# Archives
*.7z binary
*.gz binary
*.jar binary
*.tar binary
*.zip binary
# Images
*.bmp binary
*.gif binary
*.ico binary
*.jpg binary
*.png binary
*.svg binary
# Videos
*.avi binary
*.mp4 binary
# Documents
*.doc binary
*.docx binary
*.pdf binary
*.ppt binary
*.pptx binary
*.xls binary
*.xlsx binary