chore: 根目录添加了两个git脚本

This commit is contained in:
2025-12-09 15:35:04 +08:00
parent f5df8ced0b
commit 6e83377201
2 changed files with 10 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

4
git-pull.bat Normal file
View File

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