-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy path.gitattributes
More file actions
59 lines (53 loc) · 2.11 KB
/
.gitattributes
File metadata and controls
59 lines (53 loc) · 2.11 KB
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
# The following line is not git-lfs related, it simply instructs git to use the
# C# diff driver for *.cs files, to consider them text files, and to enforce
# a line feed as the end of line character.
*.cs diff=csharp text eol=lf
# Files to consider text, and enforce the eol being LF
*.c text eol=lf
*.cpp text eol=lf
*.h text eol=lf
*.md text eol=lf
*.json text eol=lf
*.meta text eol=lf
*.yaml text eol=lf
# Other files that should be considered text files
*.cginc text
*.shader text
*.plist text
etc\PlatformSpecificAssets\EOS\Mac\eac_launcher.app\Contents\_CodeSignature\CodeResources text
# Filetypes that should be considered binary files (regardless of if they are
# stored using git-lfs):
*.aar binary
*.dll binary
*.dylib binary
*.exe binary
*.gif binary
*.jpg binary
*.png binary
*.so binary
*.ttf binary
# File types to store via git-lfs
*.aar filter=lfs diff=lfs merge=lfs -text
*.dll filter=lfs diff=lfs merge=lfs -text
*.dylib filter=lfs diff=lfs merge=lfs -text
*.exe filter=lfs diff=lfs merge=lfs -text
*.gif filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.so filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
# Files without extensions to add to git-lfs
Assets/Plugins/iOS/EOSSDK.framework/EOSSDK filter=lfs diff=lfs merge=lfs -text
etc/PlatformSpecificAssets/EOS/Mac/eac_launcher.app/Contents/MacOS/start_protected_game filter=lfs diff=lfs merge=lfs -text
tools/bin/EAC/Linux/anticheat_integritytool filter=lfs diff=lfs merge=lfs -text
tools/bin/EAC/Mac/anticheat_integritytool filter=lfs diff=lfs merge=lfs -text
# These files should be merged using the UnityYamlMerge diff driver:
*.mat merge=unityyamlmerge eol=lf
*.anim merge=unityyamlmerge eol=lf
*.unity merge=unityyamlmerge eol=lf
*.prefab merge=unityyamlmerge eol=lf
*.physicsMaterial2D merge=unityyamlmerge eol=lf
*.physicMaterial merge=unityyamlmerge eol=lf
*.asset merge=unityyamlmerge eol=lf
*.meta merge=unityyamlmerge eol=lf
*.controller merge=unityyamlmerge eol=lf