0
You can change the --push-option message with a local hook when pushing?
Example:
When rotating the command git push origin master
, the pre-push hook would inject the "test" value into the --push-option, changing the command to git push origin master --push-option "teste"
The goal of this is that I need to do some local validations before I push, so at the time of sending to the server, I would inject the push-options a single token that can be validated on the server side to ensure that these validations have been made.