In my GIT's post-receive hook I need to avoid execution of some code if a tag is pushed.
I tried using the env variable $refname but it looks empty.
Any idea?
Thanks
Randomize
|
In my GIT's post-receive hook I need to avoid execution of some code if a tag is pushed. I tried using the env variable $refname but it looks empty. Any idea? Thanks Randomize
| ||||
|
feedback
|
|
Post receive hook gets something like refs/tag/FOO in case of tags and refs/heads/branch-foo in case of branches based of tags Vs branches you can determine. | |||
|
feedback
|
|
The post-receive hooks gets input from its stdin in the form:
Read the refname from the stdin and see if it contains tags ( it will be something like See here for reference: http://book.git-scm.com/5_git_hooks.html | |||
feedback
|