diff --git a/git-add-commit-push.bat b/git-add-commit-push.bat new file mode 100644 index 0000000..7eb4159 --- /dev/null +++ b/git-add-commit-push.bat @@ -0,0 +1,6 @@ +@echo off +set /p commit_message=Enter commit message: +git add . +git commit -m "%commit_message%" +git push +pause \ No newline at end of file diff --git a/git-pull.bat b/git-pull.bat new file mode 100644 index 0000000..facdf6c --- /dev/null +++ b/git-pull.bat @@ -0,0 +1,3 @@ +@echo off +git pull +pause \ No newline at end of file