feat: 两个便捷的git脚本工具

This commit is contained in:
2025-09-29 19:35:08 +08:00
parent be29c93c65
commit 5e4cd6be29
2 changed files with 9 additions and 0 deletions

6
git-add-commit-push.bat Normal file
View File

@@ -0,0 +1,6 @@
@echo off
set /p commit_message=Enter commit message:
git add .
git commit -m "%commit_message%"
git push
pause

3
git-pull.bat Normal file
View File

@@ -0,0 +1,3 @@
@echo off
git pull
pause