algorembrant commited on
Commit
0999120
·
verified ·
1 Parent(s): 55fbe5b

Update .gitattributes

Browse files
Files changed (1) hide show
  1. .gitattributes +65 -0
.gitattributes CHANGED
@@ -33,3 +33,68 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+
37
+ # GitHub and Hugging Face .gitattributes
38
+ # Normalize line endings
39
+ * text=auto
40
+
41
+ # Python source files
42
+ *.py text eol=lf diff=python
43
+
44
+ # Documentation
45
+ *.md text eol=lf diff=markdown
46
+ *.txt text eol=lf
47
+ *.rst text eol=lf
48
+
49
+ # Configuration
50
+ *.cfg text eol=lf
51
+ *.ini text eol=lf
52
+ *.toml text eol=lf
53
+ *.yaml text eol=lf
54
+ *.yml text eol=lf
55
+ *.json text eol=lf
56
+ .gitignore text eol=lf
57
+ .gitattributes text eol=lf
58
+
59
+ # Shell scripts
60
+ *.sh text eol=lf
61
+ *.bash text eol=lf
62
+
63
+ # Windows scripts (keep CRLF)
64
+ *.bat text eol=crlf
65
+ *.cmd text eol=crlf
66
+ *.ps1 text eol=crlf
67
+
68
+ # Binary files - do not modify
69
+ *.pdf binary
70
+ *.png binary
71
+ *.jpg binary
72
+ *.jpeg binary
73
+ *.gif binary
74
+ *.ico binary
75
+ *.zip binary
76
+ *.gz binary
77
+ *.tar binary
78
+ *.7z binary
79
+ *.rar binary
80
+ *.exe binary
81
+ *.dll binary
82
+ *.so binary
83
+ *.dylib binary
84
+ *.pyc binary
85
+ *.pyd binary
86
+ *.db binary
87
+ *.sqlite binary
88
+ *.whl binary
89
+ *.pkl binary
90
+ *.pickle binary
91
+
92
+ # Hugging Face LFS patterns
93
+ *.bin filter=lfs diff=lfs merge=lfs -text
94
+ *.model filter=lfs diff=lfs merge=lfs -text
95
+ *.h5 filter=lfs diff=lfs merge=lfs -text
96
+ *.pt filter=lfs diff=lfs merge=lfs -text
97
+ *.pth filter=lfs diff=lfs merge=lfs -text
98
+ *.onnx filter=lfs diff=lfs merge=lfs -text
99
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
100
+