@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