Files
tomtomgames-app/push.bat
T
2026-05-15 16:46:08 -05:00

15 lines
322 B
Batchfile

@echo off
cd /d "C:\Users\myron\Downloads\CyberPanel"
set /p MSG="Commit message (e.g. v1.0.4 - what changed): "
if "%MSG%"=="" (
echo No message entered. Aborting.
pause
exit /b
)
git add -A
git commit -m "%MSG%"
git push origin main
echo.
echo Done! Check https://github.com/myronblair/tomtomgames-app
pause