The plugin works fine when pushing changes to branch or lightweight tag. However, when annotated is pushed the commit id passed to the external script does not match the tag's commit ID. As commit id is the only way to uniquely identify the pushed update in environment with multiple repos/branches, the execution of external script fails as based on passed commit ID it can not identify repo/tag.
Charles, yes this answers the question. Thank you for help.
Hi Robert,
Just to confirm you're talking about the "External Hooks" plugin? If you're writing your own script for that plugin you can use manual git commands to find that out.
Firstly you need to know if it's a tag or commit:
> git cat-file -t $to_ref
If that is 'tag' rather than 'commit' you need to find the referenced commit:
> git rev-parse $to_ref^{commit}
Does that help? Are we talking about the same thing?
Charles
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.