8 lines
119 B
Batchfile
Raw Normal View History

2023-06-22 02:27:07 -07:00
@echo off
@git pull
@git add *
set /p commitMsg=Input what changes were made:
@git commit -m "%commitMsg%"
@git push