I recently decided that I wanted all people who commit to my repository to fill in a simple commit log. Basically I want them to fill in a form to the commit message.
A quick search found me: How can I change the default comments in the git commit message?
Now, I can put in a hook to generate a default commit message with my form outline.
However, I understand that for security reasons, git won't let me push a hook to the others who are connected to my repository.
Alternately, I can change my commit.template to specify a template, and I will be presented with a form to fill out whenever I do a commit.
Again, I can't seem to be able to change the configuration on other peoples machines.
Is there any way to give everyone the same default commit message in git without them setting it up themselves?