From docs:
update
The
update
script is very similar to thepre-receive
script, except that it’s run once for each branch the pusher is trying to update
I need multi-branch equivalent to post-receive, not pre-receive.
Thank you very much.
From docs:
update
The
update
script is very similar to thepre-receive
script, except that it’s run once for each branch the pusher is trying to update
I need multi-branch equivalent to post-receive, not pre-receive.
Thank you very much.
Copyright © 2021 Jogjafile Inc.
The
post-receive
hook receives information about all branches being updated in the transaction. E.g., if I push branches "master" and "devel" to a remote repository, thepost-receive
hook will see something like:Given that you have a list of branches being updated, you should be able to implement whatever logic is necessary.