I have created a custom pre-receive hook in pre-receive.d/10_check_tag, but the script does not seem to get the usual ref_name, rev_new, rev_old parameters via $1 $2 $3. Are they not passed on, how do I get them?
What information, in general, is available to the custom hook?
Hi Caner,
I think you may be refering to the pre-update hook, not the pre-receive hook. The pre-update hook takes the ref_name, ref_old and re_new parameters. The pre-receive hook receives the same information on stdin, but for all modified refs.
Check http://www.kernel.org/pub/software/scm/git/docs/githooks.html for details.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.