J'utilise GitLab Community Edition 8.2 et je veux ajouter le hook post-commit.
J'ai créé le fichier path_to_project.git/custom_hooks/post-commit avec des droits
$ ls -l1 custom_hooks/post-commit
-rwxr-xr-x 1 git git 45 Dec 14 21:31 custom_hooks/post-commit
et le contenu
#!/bin/bash
echo "test custom" > /tmp/hook
comme décrit ici : http://doc.gitlab.com/ce/hooks/custom_hooks.html
Mais cela ne fonctionne pas (vérification en commettant via l'interface web). J'ai également essayé de placer un hook git 'normal' (project.git/hooks/post-commit), mais cela ne fonctionne pas non plus.