I just wrote small pre-commit hook to perform my custom action. My central repository is on a Solaris server and HTTP enabled.
/apps/opt/git/myrepo.git
I edited pre-commit hook and modified as below:
#!/bin/sh -x
if [ $LOGNAME -ne bala ]; then
echo "You are not allowed"
exit 1;
fi
If I clone this repository and perform the commit action using other user, it doesn't give any message, and commits it.
Why is my commit not invoking the pre-commit hook?
Also I could see in my cloned repo under .git/hooks directory, the "pre-commit" hook is not there, I can see only the default templates.
Can anyone help here?