This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitattributes
More file actions
103 lines (92 loc) · 2.55 KB
/
Copy path.gitattributes
File metadata and controls
103 lines (92 loc) · 2.55 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
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
# .gitattributes
# ============================================
# Global: Auto detect text files
# ============================================
* text=auto
# ============================================
# Minecraft Datapack – Force LF
# ============================================
*.mcfunction text eol=lf
*.json text eol=lf diff=json
*.mcmeta text eol=lf diff=json
*.snbt text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.nbt binary
# ============================================
# Shader Files (Resource Pack uyumluluğu)
# ============================================
*.glsl text eol=lf
*.vsh text eol=lf
*.fsh text eol=lf
*.vert text eol=lf
*.frag text eol=lf
# ============================================
# Config & Build Files
# ============================================
*.yml text eol=lf
*.yaml text eol=lf
*.toml text eol=lf
*.properties text eol=lf
*.env text eol=lf
.gitignore text eol=lf
.gitattributes text eol=lf
# ============================================
# Windows-specific (optional)
# Uncomment if you REALLY need CRLF scripts
# ============================================
# *.bat text eol=crlf
# *.ps1 text eol=crlf
# ============================================
# Binary Assets
# ============================================
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.bmp binary
*.tga binary
*.tiff binary
# ============================================
# Audio & Video
# ============================================
*.ogg binary
*.mp3 binary
*.wav binary
*.flac binary
*.mp4 binary
# ============================================
# 3D / Font Assets
# ============================================
*.obj binary
*.mtl binary
*.ttf binary
*.otf binary
# ============================================
# Archives & Compiled
# ============================================
*.zip binary
*.rar binary
*.7z binary
*.tar binary
*.gz binary
*.jar binary
*.exe binary
*.dll binary
*.so binary
*.class binary
*.mcpack binary
*.mcworld binary
# ============================================
# Lock files – text, diffable
# ============================================
*.lock text eol=lf
# ============================================
# Git diff drivers
# ============================================
# diff=json driver'ı aktif etmek için aşağıdaki komutu çalıştır:
# git config diff.json.textconv "python3 -m json.tool"
# veya:
# git config diff.json.textconv "jq ."