Re: [git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Mark Waite
Sorry, but I don't have further pointers than those links (and google searches which find things like https://developer.github.com/webhooks/#events which mentions that the create event is notified each time a branch or tag is created) Mark Waite On Sat, Apr 28, 2018 at 5:57 PM Gopichand Nakkala

Re: [git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Gopichand Nakkala
Mark: Any pointers on how to trigger the hook based on when a new tag is pushed?I can't find much details on how to do this in the below links shared? https://developer.github.com/webhooks/creating/ or https://confluence.atlassian.com/bitbucket/manage-webhooks-735643732.html On Sat, Apr 28, 2018

Re: [git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Mark Waite
If you control the git server and have shell access to it, then you can use a "hook" script as described in the git docs at https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks . If you are using a hosted git server (like GitHub, Bitbucket, Assembla, Visual Studio, etc.), investigate the

[git-users] how to check if a new git tag is pushed to a git repo

2018-04-28 Thread Gopichand Nakkala
Hi I am trying to find an automatic way to check if any new tag is pushed to a git repo or not?what options are there in git to figure this out? lets say I have the following tags on a git repo, now when a new tag "TAG1620R53_REL_16_30_52_7" is pushed I want to detect it and trigger a

[git-users] how to check if a new git tag is pushed to a git repo?

2018-04-28 Thread Gopichand Nakkala
Hi I am trying to find an automatic way to check if any new tag is pushed to a git repo or not?what options are there in git to figure this out? lets say I have the following tags on a git repo, now when a new tag "TAG1620R53_REL_16_30_52_7" is pushed I want to detect it and trigger a