7 lines
84 B
Batchfile
7 lines
84 B
Batchfile
@echo off
|
|
set /p msg=Comit Message:
|
|
git add .
|
|
git commit -m "%msg%"
|
|
git push
|
|
pause
|