From b9d8cf602843933f22633a30ecc6d154eab1cc25 Mon Sep 17 00:00:00 2001 From: JoshuaMarti Date: Wed, 7 May 2025 10:21:43 -0600 Subject: [PATCH] Added batch scripts to make push/pull easier --- commit.bat | 8 ++++++++ pull.bat | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 commit.bat create mode 100644 pull.bat diff --git a/commit.bat b/commit.bat new file mode 100644 index 0000000..dfea177 --- /dev/null +++ b/commit.bat @@ -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 \ No newline at end of file diff --git a/pull.bat b/pull.bat new file mode 100644 index 0000000..0f80eed --- /dev/null +++ b/pull.bat @@ -0,0 +1,2 @@ +git pull +pause \ No newline at end of file