Files

14 lines
330 B
Batchfile

@echo off
cd /d "C:\Users\myron\Downloads\CyberPanel\tomgames"
set /p MSG="Commit message (e.g. v1.0.5 - 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