Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
TenAI
/
sd
like
0
Model card
Files
Files and versions
Community
3d87dbb
sd
/
autorepush.sh
TenAI
model
8dba997
over 1 year ago
raw
Copy download link
history
blame
Safe
271 Bytes
#!/bin/bash
log
() {
echo
"
$(date +'%Y-%m-%d %H:%M:%S')
$1
"
}
while
true
do
log
"Pushing git repository..."
git push
if
[ $? -eq 0 ];
then
log
"Git push succeeded."
break
else
log
"Git push failed, retrying in 5 seconds."
fi
sleep
5
done