-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitattributes
88 lines (75 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# following sources:
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
# https://github.com/Danimoth/gitattributes/blob/master/Common.gitattributes
# NOTE The tabspace filter converts every four spaces at the beginnig of a
# line into tabs.
# https://stackoverflow.com/questions/2316677/can-git-automatically-switch-between-spaces-and-tabs
# NOTE To make use of diff=odf follow the instructions at:
# https://git.wiki.kernel.org/index.php/GitTips#Getting_a_plain-text_diff
# NOTE Auto detect text files and perform LF normalization.
# This setting will handle all files NOT found below.
* text=auto
#clean export zip file
.gitattributes export-ignore
.gitignore export-ignore
roadmap.md export-ignore
/templates/classic2017/gulpfile.js export-ignore
/templates/classic2017/package.json export-ignore
/templates/classic2017/scss export-ignore
# INFO Source code
*.htm text filter=tabspace
*.HTM text filter=tabspace
*.html text filter=tabspace
*.HTML text filter=tabspace
*.php text filter=tabspace
*.PHP text filter=tabspace
*.css text filter=tabspace
*.CSS text filter=tabspace
*.js text filter=tabspace
*.JS text filter=tabspace
*.json text filter=tabspace
*.JSON text filter=tabspace
# NOTE Shell scripts always need Unix style line feeds
*.sh text filter=tabspace eol=lf
*.SH text filter=tabspace eol=lf
# INFO Documents
*.doc binary diff=astextplain
*.DOC binary diff=astextplain
*.docx binary diff=astextplain
*.DOCX binary diff=astextplain
*.dot binary diff=astextplain
*.DOT binary diff=astextplain
*.pdf binary diff=astextplain
*.PDF binary diff=astextplain
*.rtf binary diff=astextplain
*.RTF binary diff=astextplain
*.odt binary diff=odf
*.ODT binary diff=odf
*.ods binary diff=odf
*.ODS binary diff=odf
*.odp binary diff=odf
*.ODP binary diff=odf
# INFO Graphics
*.png binary
*.PNG binary
*.jpg binary
*.JPG binary
*.jpeg binary
*.JPEG binary
*.gif binary
*.GIF binary
*.ico binary
*.ICO binary
*.svg text
*.SVG text
*.svgz binary
*.SVGZ binary
# INFO Fonts
*.ttf binary
*.TTF binary
*.otf binary
*.OTF binary
*.eot binary
*.EOT binary
*.woff binary
*.WOFF binary