-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitattributes
More file actions
69 lines (60 loc) · 1.3 KB
/
.gitattributes
File metadata and controls
69 lines (60 loc) · 1.3 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
* text=auto eol=lf
################################################################################
# The following files are binary and should be left untouched.
# Git should not attempt to normalize line endings or generate text diffs.
################################################################################
# Archives
*.zip binary
*.gz binary
*.tar binary
*.rar binary
*.7z binary
*.vsix binary
# Compiled Code / Packages
*.jar binary
*.war binary
*.ear binary
*.class binary
*.dll binary
*.exe binary
*.so binary
*.a binary
cfn-init binary
*.node binary
*.wasm binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
*.odt binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.bmp binary
*.ico binary
*.tif binary
*.tiff binary
*.webp binary
# Audio & Video
*.mp3 binary
*.mp4 binary
*.mkv binary
*.wav binary
*.ogg binary
*.mov binary
# Other
*.keystore binary
*.jks binary
*.db binary
*.sqlite binary
# Windows batch files must always use CRLF, or they may fail to execute.
*.bat text eol=crlf
*.cmd text eol=crlf
# PowerShell can handle LF, but CRLF is safer for Windows-specific scripts
*.ps1 text eol=crlf