我想设置一个 cron 作业,使生产站点从 gitolite 存储库中提取。
以下命令在非 cron 上下文中工作:
# m h dom mon dow command
* * * * * cd /home/www/test/autopulling-site/ && /usr/bin/git fetch && /usr/bin/git pull
我怀疑由于 SSH 密钥未在 cron 上下文中正确发送,git 操作不起作用。日志什么也没显示。
有任何想法吗?