git - Can I live-preview the results of a pull request before accepting it? -
my boss has idea our website , i'm wondering how possible is.
we want bring on non-technical people approval process pull-requests on github. example, have who's job assure accuracy of things saying, , have else who's job make sure website has design.
the problem neither of these people technical , can't read code nor use software git bash. them somehow able preview changes of pull request see how looks (rather seeing code itself). possible git? if not how else can integrate them
yes, can. called, "have proper release channel"
once that, can build release git branch , install it.
as long "deploying via git checkout" you'll never want. problem order of operations work against you.
with proper release channel, order of operations like
- commit code
- build installable
- install installable
but since building installable own step, can reorder steps:
- build installable (pre commit)
- install installable (pre commit)
- commit code
- build installable (post commit)
- install installable (post commit)
with short-cut avoiding explicit construction of installable, limiting ability install ability commit. result work flow looks like
- commit code
- install commit
it lack of installable hindering @ moment. able build installable branch, , deploy experimental changes servers verification before go live.
for website, wouldn't fancy. zip file installable sufficient.
Comments
Post a Comment