@echo off echo Running Deployment Sequence... echo ------------------------------------------ echo Step 1: Pushing to GitHub Main echo ------------------------------------------ git add . git commit -m "style: final flake8 line wrap fixes" git push origin main echo ------------------------------------------ echo Step 2: Creating Clean Hugging Face Deployment echo ------------------------------------------ git checkout --orphan hf-deploy-final git rm -rf --cached . git add . git commit -m "Deploy Final - Flawless SDK" echo ------------------------------------------ echo Step 3: Pushing to Hugging Face echo ------------------------------------------ git push -uf hf hf-deploy-final:main echo ------------------------------------------ echo Step 4: Returning to Main Branch echo ------------------------------------------ git checkout main echo ------------------------------------------ echo All deployments perfectly successful! echo ------------------------------------------ pause