diff --git a/AutoPullGitChanges.bat b/AutoPullGitChanges.bat new file mode 100644 index 0000000..6638d28 --- /dev/null +++ b/AutoPullGitChanges.bat @@ -0,0 +1,9 @@ +@echo off + +:loop +echo 正在执行 git pull... +git pull +echo 等待10分钟... +timeout /t 600 /nobreak >nul + +goto loop