-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
39 lines (36 loc) · 940 Bytes
/
.gitattributes
File metadata and controls
39 lines (36 loc) · 940 Bytes
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
# Zeilenenden-Normalisierung für das Repo
# Git normalisiert Textdateien beim Commit auf LF und checkt sie je nach
# core.autocrlf-Setting konsistent aus. Damit verschwinden LF/CRLF-Warnungen
# wie "LF will be replaced by CRLF the next time Git touches it".
* text=auto
# Quellcode und Konfiguration explizit als Text (LF im Repo, plattform-nativ im Working Copy)
*.cs text diff=csharp
*.ts text
*.tsx text
*.js text
*.jsx text
*.json text
*.html text
*.css text
*.scss text
*.md text
*.yml text
*.yaml text
*.xml text
*.sql text
*.csproj text
*.sln text eol=crlf
*.ps1 text eol=crlf
*.cmd text eol=crlf
*.bat text eol=crlf
*.sh text eol=lf
# Binärdateien explizit markieren
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.pdf binary
*.zip binary
*.dll binary
*.exe binary