I have a non-bare repository at my server (dirs /home/andrew/web and /home/andrew/web/.git), set receive.denyCurrentBranch to ignore and created post-receive hook:
#!/bin/sh
GIT_WORK_TREE=/home/andrew/web git checkout -f
When I run sh .git/hooks/post-receive, everything works fine. But when I push from my PC I get this error:
remote: fatal: Not a git repository: '.'
Is there a way how can I solve this issue? And eventually without having to switch bare repo?
Thank you
EDIT: Here's my new post-receive hook. Why it is like this has been described in the accepted answer.
echo "\nChecking out $PWD"
GIT_DIR=/home/andrew/web/.git
GIT_WORK_TREE=/home/andrew/web git checkout -f
andrew@example.com:/home/andrew/webbut I think the real problem is that your remote repo is not bare. You could try to force push:git push -f origin– Simon May 9 '12 at 2:55