-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitattributes
73 lines (58 loc) · 1.48 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
##########################################################
# English translation of "Das Git-Buch" (the Git Book) #
# https://github.com/Fossy-Cats/Git-Buch_EN #
##########################################################
* text=auto
## Repository Configuration
###########################
.editorconfig text eol=lf
.gitlab-ci.yml text eol=lf
.travis.yml text eol=lf
.gitattributes text eol=lf
.gitconfig text eol=lf
.gitignore text eol=lf
.gitmodules text eol=lf
## Documentation Files
######################
*.asc text
*.adoc text
*.asciidoc text
*.md text
*.pdf binary
*.txt text
LICENSE text
## HTML Related Files
#####################
*.html text
/docs/index.html text eol=lf
/docs/*.css text eol=lf
## Ruby Files
#############
[attr]Ruby text eol=lf
*.rb Ruby
*.rake Ruby
*.gemspec Ruby
Rakefile Ruby
rakefile Ruby
## Shell Scripts
################
*.bat text eol=crlf
*.cmd text eol=crlf
*.sh text eol=lf
*.ps1 text eol=crlf
## Image & Graphics Files
#########################
*.png binary
*.svg binary
## Third Party Tools File Formats
#################################
# Dia Diagram Editor: http://dia-installer.de/
*.dia binary
# ColorImpact 4 palettes: http://www.tigercolor.com
*.cifc binary
## GitHub Linguist Settings
###########################
assets/** linguist-vendored
*.asciidoc linguist-detectable
*.adoc linguist-detectable
# EOF #