chatbot21 / push_to_hf.bat
Martechsol
Latest updates: Thu 05/28/2026 9:28:53.82
6d2eb5a
Raw
History Blame Contribute Delete
802 Bytes
@echo off
echo ===================================================
echo Hugging Face Push Utility
echo ===================================================
cd /d "%~dp0"
echo Current Directory: %CD%
echo.
echo Staging changes...
git add -A
echo.
echo Committing changes...
git commit -m "Latest updates: %date% %time%"
echo.
echo Setting Hugging Face remote...
git remote remove hf 2>nul
git remote add hf https://huggingface.co/spaces/joedown11/chatbot21
echo.
echo Pushing to Hugging Face repository...
git push hf main --force || git push hf master --force
echo.
echo ===================================================
echo Done! All your latest fixes have been pushed to Hugging Face.
echo Wait 1-2 minutes for Hugging Face to rebuild before testing the live URL.
pause