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
4b432e0
LECO
/
add.bash
SenY
add.bash
17527dc
over 1 year ago
raw
Copy download link
history
blame
Safe
130 Bytes
#!/bin/bash
git ls-files --others --exclude-standard |
while
read
line;
do
git add
"
$line
"
; git commit -am
"
$line
"
; git push
done