I have a git hook file

.git/hooks/commit-msg

that I would like everybody on the team to have. Can I add it to the reposity somehow?

link|improve this question

71% accept rate
possible duplicate of Can Git hook scripts be managed along with the repository? – manojlds Jul 14 '11 at 14:09
Another strongly-related question: Putting Git hooks into repository – Jefromi Jul 15 '11 at 0:53
feedback

1 Answer

up vote 3 down vote accepted

I think you can't directly add the hook to the repository. However you can put the script in the normal tree structure and create a small script to link it to the hooks directory. If you have your commit-msg-hook-script is at the root of your repository, you could create an install_commit_hook.sh, with something like this:

ln -s ../../commit-msg-hook-script .git/hooks/commit-msg
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.