我正在尝试安排一个将调用一些 git 命令的批处理文件。例如test.bat
包含:
cd c:\path\to\my\repo
call git status
pause
通过双击打开批处理文件时,它会按预期运行。但是,当从任务计划程序运行时,它会抛出错误'git' is not recognized as an internal or external command, operable program or batch file.
C:\Program Files (x86)\git\bin
在我的 PATH 环境变量中。