I was trying to create a cronjob with a task to do a git pull every minute to keep my production site in sync with my master branch.
git pull
The git pull needs
Solution:
*/1 * * * * su -s /bin/sh nobody -c 'cd ~dstrt/www && /usr/local/bin/git pull -q origin master'