在服务器上,/home/git/xxx/hooks/post-receive:
#!/bin/bash
cd /var/www/xxx
git pull
在服务器上,/var/www/xxx 是这样创建的:
cd /var/www
git clone /home/git/repositories/xxx.git
当我在客户端上运行“git push”时,收到以下消息:
remote: fatal: Not a git repository: '.'
有任何想法吗?