forked from RC219805/Transformation_Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
123 lines (111 loc) · 2.05 KB
/
Copy path.gitattributes
File metadata and controls
123 lines (111 loc) · 2.05 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
# .gitattributes
# Git attributes for Transformation Portal repository
# Ensures consistent file handling and line endings across platforms
# Auto detect text files and normalize line endings to LF
* text=auto eol=lf
# Explicitly declare text files
*.py text eol=lf
*.sh text eol=lf
*.md text eol=lf
*.txt text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
*.json text eol=lf
*.toml text eol=lf
*.ini text eol=lf
*.cfg text eol=lf
*.conf text eol=lf
*.xml text eol=lf
*.html text eol=lf
*.css text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.jsx text eol=lf
*.tsx text eol=lf
*.cube text eol=lf
# Scripts should always use LF
*.sh text eol=lf
# Windows scripts use CRLF
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Binary files
*.jpg binary
*.jpeg binary
*.png binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.pyc binary
*.pyd binary
*.so binary
*.dll binary
*.exe binary
*.o binary
*.a binary
*.lib binary
*.dylib binary
# Image formats (high-end processing)
*.tif binary
*.tiff binary
*.exr binary
*.hdr binary
*.dng binary
*.cr2 binary
*.nef binary
*.arw binary
# Video formats
*.avi binary
*.mov binary
*.mp4 binary
*.mkv binary
*.webm binary
*.prores binary
# Model files
*.pth binary
*.pt binary
*.ckpt binary
*.safetensors binary
*.onnx binary
*.pb binary
*.mlmodel binary
*.mlpackage binary
*.tflite binary
*.bin binary
# Archives
*.tar binary
*.tar.gz binary
*.tgz binary
*.zip binary
*.7z binary
*.rar binary
# Documents
*.pdf binary
*.doc binary
*.docx binary
*.xls binary
*.xlsx binary
*.ppt binary
*.pptx binary
# Git attributes for specific files
.gitattributes export-ignore
.gitignore export-ignore
.github/ export-ignore
# LFS tracking for large files (if Git LFS is enabled)
# Uncomment if using Git LFS:
# *.pth filter=lfs diff=lfs merge=lfs -text
# *.safetensors filter=lfs diff=lfs merge=lfs -text
# *.onnx filter=lfs diff=lfs merge=lfs -text
# *.mlpackage filter=lfs diff=lfs merge=lfs -text