-
Notifications
You must be signed in to change notification settings - Fork 473
Expand file tree
/
Copy path.gitattributes
More file actions
63 lines (55 loc) · 972 Bytes
/
.gitattributes
File metadata and controls
63 lines (55 loc) · 972 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Default: Auto-detect text files and normalize to LF
* text=auto eol=lf
# Source code
*.java text eol=lf
*.xml text eol=lf
*.xsd text eol=lf
*.properties text eol=lf
# Documentation
*.md text eol=lf
*.html text eol=lf
*.txt text eol=lf
# Configuration files
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.xml text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# Build and CI/CD
pom.xml text eol=lf
*.gradle text eol=lf
*.sh text eol=lf
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Binary files (certificates used in tests)
*.pfx binary
*.p12 binary
*.jks binary
*.der binary
*.cer binary
*.crt binary
*.key binary
# Archives and compiled artifacts
*.jar binary
*.war binary
*.ear binary
*.zip binary
*.tar binary
*.gz binary
*.7z binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.bmp binary
*.webp binary
# Other binaries
*.class binary
*.so binary
*.dll binary
*.dylib binary
*.exe binary