I am trying to have a git 'post-receive' on my server. I am using the following code on the hook file:
#!/bin/bash
#CONFIG
LIVE="/home/ubuntu/public_html/testing"
read oldrev newrev refname
if [ $refname = "refs/heads/master" ]; then
echo "===== DEPLOYING TO LIVE SITE ====="
unset GIT_DIR
cd $LIVE
# ssh-agent $BASH
# ssh-add /home/ubuntu/.ssh/ubuntu
git pull --verbose origin master || echo "git-pull: returned error code"
echo "===== DONE ====="
fi
It is showing the following error mesasge whenever I am trying to push something from my local pc to server:
===== DEPLOYING TO LIVE SITE =====
remote: error: cannot open .git/FETCH_HEAD: Permission denied
remote:
remote: git-pull: returned error code
remote: ===== DONE =====
Can anyone please help what can be the issue?
Just to confirm, I have tried with the same user credential to run the command via ssh terminal and it worked fine.
Thanks in advance.
git-daemonor is everythingssh+git://<something>). If you're usinggit-daemon, is the user id on the daemon (and thus what is running your hook) capable of reading/writing to your "live" repository? – twalberg Sep 13 '12 at 16:44git-daemonis one I had run into in the past, so I thought it was one possible explanation for what you're seeing, but it sounds like that's not the case. – twalberg Sep 13 '12 at 18:02