GIS150/commit.end.bat

8 lines
129 B
Batchfile
Raw Permalink Normal View History

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