How would you manage development between many Staging branches?
Posted
by
Trip
on Programmers
See other posts from Programmers
or by Trip
Published on 2012-09-07T09:45:38Z
Indexed on
2012/09/07
9:48 UTC
Read the original article
Hit count: 140
project-management
We have a Staging Branch. then we came out with a Beta branch for users to move whenever they wanted to from old Production branch to the new features.
Our plan seemed simple, we test on Staging, when items get QA'd, they get cherry-picked and deploy to Beta.
Here's the problem! A bug will discreetly make its way on to Beta, and since Beta is a production environment, it needs fixes fast and accurate. But not all the QA's got done. Enter Git hell..
So I find a problem on Beta. No sweat, its already been fixed on Staging, but when I go to cherry-pick the item over, Beta barely has any of the other pre-requisites of code to implement this small change. Now Beta has a little here and a little there, and I can't imagine it as a code base being as stable as Staging. What's more, is I'm dealing with some insane Git conflicts, and having to monkey patch a bunch of things to make up for what Beta hasn't caught up with Staging.
Can someone polite or non-polite terms, tell me what we're doing wrong here as far as assembling this project? Any awesome recommendations or workarounds or alternatives to the system we came up with?
© Programmers or respective owner