8 lines
119 B
Batchfile
8 lines
119 B
Batchfile
|
@echo off
|
||
|
@git pull
|
||
|
@git add *
|
||
|
|
||
|
set /p commitMsg=Input what changes were made:
|
||
|
@git commit -m "%commitMsg%"
|
||
|
@git push
|