I'm having an issue with Git's post-receive-email hook script. Here is what I did:
- On my server, I initialized a bare repository using:
git --bare init myrepo.git. My server's Git config file sayscore.bare = true - Did the setup using the guides for Git email for post receive
- On my client, clones the repository using
git clone URL. On my client, Git config iscore.bare = false. - Did some work, added the new files, committed to the local Git
- Pushed the changes to the remote repository using:
git push origin masterwhich issues the generated ref-ids for the commits done - But I do not receive emails; so tried to run the post-receive hook script on the server in
hooksdirectory with./post-receive <oldrev> <newrev> refs/heads/master
The following error is constantly returned:
Unknown type of update to c9c047af (commit)
no email generated
Any clues what could be wrong?
git rev-parse <oldrev>,git rev-parse <newrev>,git cat-file -t $(git rev-parse <oldrev>)andgit cat-file -t $(git rev-parse <newrev>)? – Christopher Jul 3 '12 at 14:40