feat: 自动提交 - 周五 2025/09/19 19:42:44.04

This commit is contained in:
赵杰 Jie Zhao (雄狮汽车科技)
2025-09-19 19:42:44 +01:00
parent da4736c323
commit 45beca7f94
7 changed files with 951 additions and 67 deletions

28
quick_push.bat Normal file
View File

@@ -0,0 +1,28 @@
@echo off
chcp 65001 >nul
echo 🚀 TSP智能助手 - 快速推送
echo.
:: 检查是否有参数
if "%1"=="" (
set commit_msg=feat: 快速提交 - %date% %time%
) else (
set commit_msg=%1
)
echo 📝 提交信息: %commit_msg%
echo.
:: 执行推送
git add . && git commit -m "%commit_msg%" && git push origin main
if %errorlevel% equ 0 (
echo.
echo ✅ 推送完成!
) else (
echo.
echo ❌ 推送失败,请检查错误信息
)
echo.
pause