T-Wing-SPEED/COMIT.bat
2025-06-05 19:25:43 +03:00

7 lines
84 B
Batchfile

@echo off
set /p msg=Comit Message:
git add .
git commit -m "%msg%"
git push
pause