T-Wing-Direction/COMIT.bat
2025-06-05 19:53:15 +03:00

7 lines
84 B
Batchfile

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