Added batch scripts to make push/pull easier

This commit is contained in:
JoshuaMarti 2025-05-07 10:21:43 -06:00
parent 67378cfa5e
commit b9d8cf6028
2 changed files with 10 additions and 0 deletions

8
commit.bat Normal file
View File

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

2
pull.bat Normal file
View File

@ -0,0 +1,2 @@
git pull
pause