Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
SenY
/
LECO
like
28
License:
other
Model card
Files
Files and versions
Community
6
SenY
commited on
Jul 22, 2023
Commit
17527dc
•
1 Parent(s):
f0ee464
add.bash
Browse files
Files changed (1)
hide
show
add.bash
+5
-0
add.bash
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
#!/bin/bash
2
+
3
+
git ls-files --others --exclude-standard | while read line;do
4
+
git add "$line"; git commit -am "$line"; git push
5
+
done