How to configure git so that I get a message through gchat or target so that someone clicks on the server?

What do I need to configure the server to receive an update message through gchat / aim? I just set up the client on the server and used the hook in conjunction with the script?

+3
source share
2 answers

You can use the .git / hooks / post-receive hook to check for new changesets and use a command line tool such as sendxmpp to send messages.

+1
source

Yes. all you have to do is make sure that you have a command line way to use your instant messenger application.

+1
source

Source: https://habr.com/ru/post/1786230/


All Articles