-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
46 lines (41 loc) · 947 Bytes
/
.gitattributes
File metadata and controls
46 lines (41 loc) · 947 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
# ---------------------------------------------------------------------------
# .gitattributes
#
# Force binary handling for file types that must NOT be touched by Git's
# line-ending normalisation. Without this, the PDF seed evidence files
# under sample-app/api/src/main/resources/data/sample-evidence/ get
# corrupted on Windows checkouts because Git rewrites LF -> CRLF inside
# the byte stream, breaking the PDF cross-reference table.
# ---------------------------------------------------------------------------
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.webp binary
# Archives
*.zip binary
*.gz binary
*.tar binary
*.7z binary
*.jar binary
*.war binary
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
# Media
*.mp3 binary
*.mp4 binary
*.mov binary
*.wav binary