8 lines
103 B
Batchfile
8 lines
103 B
Batchfile
@echo off
|
|
set /p msg=Commit Message:
|
|
git add .
|
|
git commit -m "%msg%"
|
|
git pull --rebase
|
|
git push
|
|
pause
|