-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy path.gitattributes
More file actions
30 lines (26 loc) · 954 Bytes
/
Copy path.gitattributes
File metadata and controls
30 lines (26 loc) · 954 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
# .gitattributes — Formation PostgreSQL 18
# Cohérence des fins de ligne (LF) entre Windows / macOS / Linux
# et traitement correct des fichiers texte par Git.
# Détection automatique du texte ; normalisation en LF dans le dépôt et au checkout.
* text=auto eol=lf
# Contenu de la formation (explicite) : fichiers texte, fins de ligne LF.
*.md text eol=lf
*.txt text eol=lf
*.sh text eol=lf
LICENSE text eol=lf
# Images et binaires éventuels (captures d'écran, schémas…) :
# pas de normalisation de fins de ligne, pas de diff texte.
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.webp binary
*.ico binary
*.pdf binary
# Le SVG est du XML : traité comme texte.
*.svg text eol=lf
# Fichiers d'infrastructure exclus des archives « git archive »
# (téléchargements .zip/.tar.gz depuis GitHub → contenu de formation uniquement).
.gitattributes export-ignore
.gitignore export-ignore
.claude export-ignore