forked from gskinner/regexr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
47 lines (39 loc) · 870 Bytes
/
.gitattributes
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
# Force all line endings to be \n
* text eol=lf
############################################################
# git can corrupt binary files if they're not set to binary.
############################################################
# Apple office documents are actually folders, so treat them as binary.
*.numbers binary
*.pages binary
*.keynote binary
# Image files
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
# Movie and audio files
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.ogg binary
# Compression formats
*.gz binary
*.bz2 binary
*.7z binary
*.zip binary
# Web fonts
*.ttf binary
*.eot binary
*.woff binary
*.otf binary
# Other
*.fla binary
*.swf binary
*.pdf binary
############################################################
# End binary settings
############################################################