If a branching strategy consists of n feature branches, a "master" (mainline) and an "integration" branch. What is the purpose of the integration branch? Why can testing and integration not be performed on the feature branch itself?
|
feedback
|
|
Because it's a feature branch. It should only contain changes pertaining to the one feature. The integration branch is where you bring multiple features together for testing, before the final push onto master. Of course, you don't have to separate things this way. You could do integration on feature branches, just as you could do all your work on master. But separation of concerns is a good thing. | |||||||||||||
feedback
|
|
One major reason i often see for the need for an "integration" branch is when your feature branches are untestable on their own. In my experience, this usually is due to a database dependency. Or, consider a website project that is database backed... lets say its a JSP application hosted in BEA Weblogic, back by a 60GB Oracle database; It would take a LOT of hardware to give each feature branch its own BEA Weblogic and Oracle instance to test from. Instead, it is generally easier to develop as best as possible into a feature branch, but move into an integration branch for full QA testing, where QA needs to be performed on a full web server and database. | |||
|
feedback
|