-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
124 lines (105 loc) · 2.78 KB
/
Copy path.gitattributes
File metadata and controls
124 lines (105 loc) · 2.78 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# ==============================================================================
# Git Attributes Configuration for ManpLab
# Ensures consistent line endings, encodings, and binary file handling
# ==============================================================================
# ============ AUTO DETECTION ============
# Let Git auto-detect text files and perform LF normalization
* text=auto
# ============ SOURCE CODE FILES ============
# C# source files - UTF-8, LF line endings
*.cs text eol=lf encoding=UTF-8
*.csproj text eol=lf encoding=UTF-8
*.sln text eol=lf encoding=UTF-8
# C++ source files - UTF-8, LF line endings
*.cpp text eol=lf encoding=UTF-8
*.h text eol=lf encoding=UTF-8
*.hpp text eol=lf encoding=UTF-8
*.c text eol=lf encoding=UTF-8
*.cc text eol=lf encoding=UTF-8
# XAML and XML files - UTF-8, LF line endings
*.xaml text eol=lf encoding=UTF-8
*.xml text eol=lf encoding=UTF-8
*.config text eol=lf encoding=UTF-8
*.props text eol=lf encoding=UTF-8
*.targets text eol=lf encoding=UTF-8
*.resx text eol=lf encoding=UTF-8
# JSON files - UTF-8, LF line endings
*.json text eol=lf encoding=UTF-8
# Markdown and documentation - UTF-8, LF line endings
*.md text eol=lf encoding=UTF-8
*.txt text eol=lf encoding=UTF-8
# ============ WEB FILES ============
*.html text eol=lf encoding=UTF-8
*.css text eol=lf encoding=UTF-8
*.js text eol=lf encoding=UTF-8
*.ts text eol=lf encoding=UTF-8
# ============ SCRIPTS ============
*.sh text eol=lf encoding=UTF-8
*.bat text eol=crlf encoding=UTF-8
*.cmd text eol=crlf encoding=UTF-8
*.ps1 text eol=crlf encoding=UTF-8
# ============ CONFIGURATION FILES ============
.gitignore text eol=lf encoding=UTF-8
.gitattributes text eol=lf encoding=UTF-8
.editorconfig text eol=lf encoding=UTF-8
*.yml text eol=lf encoding=UTF-8
*.yaml text eol=lf encoding=UTF-8
# ============ BINARY FILES ============
# Images
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.bmp binary
*.ico binary
*.svg binary
*.webp binary
# Archives
*.zip binary
*.7z binary
*.gz binary
*.tar binary
*.rar binary
# Compiled binaries
*.dll binary
*.exe binary
*.pdb binary
*.lib binary
*.obj binary
*.o binary
*.so binary
*.dylib binary
# NuGet packages
*.nupkg binary
# Media files
*.mp4 binary
*.mov binary
*.avi binary
*.mp3 binary
*.wav binary
*.ogg binary
# Fonts
*.ttf binary
*.otf binary
*.woff binary
*.woff2 binary
*.eot binary
# Office documents
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
*.pdf binary
# ============ EXPORT SETTINGS ============
# Linguist settings for GitHub statistics
*.cs linguist-language=C#
*.cpp linguist-language=C++
*.h linguist-language=C++
# ============ DIFF SETTINGS ============
# C# files - use csharp diff driver if available
*.cs diff=csharp
# Better diff for specific file types
*.sln merge=union
*.csproj merge=union