I’d like to set up my git server so that any pushes to, say, master
are turned into pushes to master-unchecked
; obviously to then run something server-side that verifies that the changes are ok, before moving them to master
(bypassing the diversion locally).
Is that possible using, some of the git server management tools like gitolite, gitosis or gitano?
Note that I’d like to avoid the developers to manually have to run git push origin master:master-unchecked
.