-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
32 lines (28 loc) · 1.11 KB
/
Copy path.gitattributes
File metadata and controls
32 lines (28 loc) · 1.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
# Zeilenenden repo-weit normalisieren: git speichert LF, die Arbeitskopie darf
# plattformueblich sein. Ohne diese Datei meldete git unter Windows den halben
# Baum als geaendert - ein reiner CRLF/LF-Unterschied ohne Inhaltsaenderung.
* text=auto
# Dateien, die im Linux-Container ausgefuehrt werden, brauchen LF auch in der
# Arbeitskopie: CRLF laesst bash mit "\r: command not found" scheitern.
Dockerfile text eol=lf
*.sh text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Windows-Skripte umgekehrt.
*.bat text eol=crlf
*.ps1 text eol=crlf
# Binaerdateien nie konvertieren. `text=auto` erkennt die meisten davon
# ohnehin, die Liste macht es fuer die Geodatenformate explizit.
*.png binary
*.jpg binary
*.ico binary
*.qm binary
*.zip binary
*.gpkg binary
*.shp binary
*.shx binary
*.dbf binary
*.qix binary
*.tif binary
# Nicht als binaer markieren: *.asc (ESRI-ASCII-Grid), *.prj, *.cpg und *.qml
# sind Textformate und werden von `text=auto` korrekt behandelt.