This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.gitattributes
110 lines (93 loc) · 2.07 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# This file contains rules that control how Git handles binary and text files,
# including line endings
#
* text=off
# Make sure Windows batch files preserve CR/LF line endings, otherwise they may not be able to execute. Windows
# batch files require a CR/LF for labels to work properly, otherwise they may fail when labels straddle 512-byte
# block boundaries. This is important when files are downloaded through a zip archive that was authored on a
# Linux machine (the default behavior on GitHub)
*.bat eol=crlf
*.sh eol=lf
###
# Source Code
#
*.cs diff=csharp
*.c diff=cpp
*.cpp diff=cpp
*.objc diff=objc
*.java diff=java
*.py diff=python
*.html diff=html
*.htm diff=htm
*.xhtml diff=html
*.xhtm diff=html
*.xml diff=patience
###
# Graphics
#
*.jpg binary -delta
*.jpeg binary -delta
*.png binary -delta
*.gif binary -delta
*.psd binary
*.ai binary -delta
*.tga binary -delta
*.tiff binary
*.tif binary
###
# Fonts
#
*.ttf binary
###
# Audio
#
*.mp3 binary -delta
*.wav binary
*.ogg binary -delta
###
# Video
#
*.mp4 binary -delta
*.mpg binary -delta
*.mpeg binary -delta
*.mov binary -delta
###
# 3D Object
#
*.FBX binary
*.fbx binary
*.blend binary -delta
*.obj binary
###
# Compressed files
#
*.7z binary -delta
*.zip binary -delta
*.ZIP binary -delta
*.gz binary -delta
*.bz2 binary -delta
###
# Documents
#
*.doc diff=astextplain binary -delta
*.DOC diff=astextplain binary -delta
*.docx diff=astextplain binary -delta
*.DOCX diff=astextplain binary -delta
*.dot diff=astextplain binary -delta
*.DOT diff=astextplain binary -delta
*.pdf diff=astextplain binary -delta
*.PDF diff=astextplain binary -delta
*.rtf diff=astextplain binary -delta
*.RTF diff=astextplain binary -delta
*.ps binary
*.PS binary
###
# Misc Binaries
#
*.dll binary
###
# UE4 Files
#
*.uasset binary
*.umap binary