8 lines
129 B
Batchfile
8 lines
129 B
Batchfile
|
git add .
|
||
|
@echo off
|
||
|
set /p "cm=Enter Commit Message: "
|
||
|
git commit -m "%cm%"
|
||
|
echo Ready to push to repository
|
||
|
pause
|
||
|
git push
|
||
|
pause
|