With a one official repository as the remote, and multiple local repositories cloned from it, can a pre-commit hook be scripted on that main repository and be enforced on all clones of it?
|
|
I don't think so, as hooks are not cloned. Or maybe if the hooks are part of a git template directory used for creating the clones (that would only ensure their presences in the clone repo, that would not guarantee they are actually used and executed). But I don't think there is any "central" way to enforce a commit. As Jefromi explains even more clearly in the comments (emphasis mine):
I agree with that comment, and have only seen ways to enforce rules applied locally, in a given specialized repo. Another illustration directly derived from what I just mentioned would be "Serverless Continuous Integration with Git", a way to enforce locally private build that works before pushing them anywhere. |
|||||||||||
|
From
pre-commit
This hook is invoked by git commit, and can be bypassed with
--no-verify option.
Since the hook can easily be bypassed, it seems the answer to your question is "no". Also, since the .git/hooks directory is not cloned, there does not seem to be a mechanism to push it to the client. |
||||
|
|
|
You can not have the pre-commit hook forced on peoples local repositories, but in your central repo you can still run a pre-receive hook. F. ex I needed to be sure the commit messages obeyed certain rules (for trac integration etc) so I used following pre-commit hook, which checks every commit messages being pushed to the central repository, and will deny the push if it is not welformed.
#!/bin/sh
while read rev_old rev_new ref
do
MALFORMED="$(git rev-list --oneline $rev_old..$rev_new | egrep -v '#[0-9]+' | awk '{print $1}' )"
if [ x"$MALFORMED" != x ]
then
echo Invallid commit message on $MALFORMED
exit 1
fi
done
for more info see f.ex http://book.git-scm.com/5_git_hooks.html |
|||
|
|
|
Assuming you have source code in your git repo that has a build system associated with it, you could configure the build system to set up the pre-commit hook, i.e. by moving or linking a pre-commit hook that ~is versioned. I have not tried this yet. I came here while googling for a better solution. |
|||
|
|