mirror of
https://github.com/myronblair/tomtomgames-app
synced 2026-06-30 09:41:18 -05:00
14 lines
330 B
Batchfile
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 |