Spaces:
Running
Running
| @echo off | |
| echo ======================================== | |
| echo VERIDEX - GitHub Push | |
| echo ======================================== | |
| echo. | |
| set /p GITHUB_USERNAME="Enter your GitHub username: " | |
| set /p COMMIT_MSG="Enter commit message (or press Enter for default): " | |
| if "%COMMIT_MSG%"=="" set COMMIT_MSG=VERIDEX v4.0 update | |
| echo. | |
| echo Initializing git... | |
| git init | |
| git add . | |
| git commit -m "%COMMIT_MSG%" | |
| git branch -M main | |
| echo. | |
| echo Setting remote origin... | |
| git remote remove origin 2>nul | |
| git remote add origin https://github.com/%GITHUB_USERNAME%/VERIDEX.git | |
| echo. | |
| echo Pushing to GitHub... | |
| echo (Enter your GitHub Personal Access Token when prompted for password) | |
| git push -u origin main | |
| echo. | |
| echo ✅ Done! Check: https://github.com/%GITHUB_USERNAME%/VERIDEX | |
| pause | |