To trigger a git hook after a pull i made a post-merge hook. The script looks like this:
#!/bin/sh
git log > gitlog.txt
The file is called 'post-merge' and has the same owner as the one that runs the pull command. Also it has the right permissions : 755.
When u do i git pull [remote] master i get this error:
error: cannot run .git/hooks/post-merge: No such file or directory
The post-merge file is in the .git/hooks folder.