I want to setup a cron job that makes a production site pull from a gitolite repository.
The following command works in a non-cron-context:
# m h dom mon dow command
* * * * * cd /home/www/test/autopulling-site/ && /usr/bin/git fetch && /usr/bin/git pull
I am suspecting that the git operation doesn't work due to the SSH key not being sent correctly in a cron context. The logs show nothing.
Any ideas?