T-Wing-SPEED/COMIT.bat

8 lines
103 B
Batchfile

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