-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
59 lines (55 loc) · 1.21 KB
/
.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
48
49
50
51
52
53
54
55
56
57
58
59
# Taken from https://gist.github.com/dandoescode/5953539/
# Ensures all line endings are committed as LF, but will checkout with native line endings
* text=auto
# -- Override Section, just in-case Git tries to be sneaky
# Ensure that these files are recognized as text
*.asp text
*.aspx text
*.asx text
*.c text
*.cfg text
*.coffee text
*.cpp text
*.css text
*.erb text
*.erl text
*.go text
*.groovy text
*.h text
*.hs text
*.html text
*.ini text
*.java text
*.js text
*.json text
*.jsp text
*.less text
*.md text
*.markdown text
*.php text
*.pl text
*.properties text
*.py text
*.rb text
*.rhtml text
*.rjs text
*.sass text
*.scala text
*.scss text
*.svg text
*.textile text
*.txt text
*.yml text
*.xml text
Makefile text
Procfile text
# Ensure that these binarys are, well, binary
*.bmp binary
*.bz2 binary
*.gif binary
*.jar binary
*.jpeg binary
*.jpg binary
*.png binary
*.tar.gz binary
*.zip binary