-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitattributes
84 lines (68 loc) · 1.76 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
# Set Git's default behaviour to text-files autodetection, in case users
# don't have `core.autocrlf` set:
* text=auto
# Explicitly declare commonly used file extensions as either text or binary,
# and tell Git how to handle line-endings normalization.
## PureBasic Files
##################
*.cfg text linguist-generated=true gitlab-generated=true
*.pb text linguist-language=PureBasic gitlab-language=PureBasic
*.pbf text linguist-language=PureBasic gitlab-language=PureBasic
*.pbi text linguist-language=PureBasic gitlab-language=PureBasic
*.pbp text linguist-language=XML linguist-generated=true
*.pbp text gitlab-language=XML gitlab-generated=true
## Shell Scripts
################
*.bat text eol=crlf
*.com text eol=crlf
*.sh text eol=lf
*.ps1 text eol=crlf
## 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
######################
*.adoc text
*.asciidoc text
*.md text
*.txt text
*.doc binary
*.docx binary
*.odt binary
*.pdf binary
COPYING text
LICENSE text
UNLICENSE text
## Zipped Archives
##################
*.7z binary
*.gz binary
*.jar binary
*.rar binary
*.tar binary
*.zip binary
## Image & Graphics Files
#########################
*.bmp binary
*.gif binary
*.ico binary
*.jpeg binary
*.jpg binary
*.png binary
*.svg binary
*.svgz binary
## Compiled Binaries
####################
*.app binary
*.dll binary
*.dylib binary
*.exe binary
*.out binary
*.so binary
# EOF #