vote up 16 vote down star
9

What is the best branching strategy to use when you want to do continuous integration?

Release Branching - Unstable Trunk:

alt text

or

Feature Branching - Stable Trunk:
alt text

Does it make sense to use both of these strategies together? As in, you branch for each release but you also branch for large features?

Does one of these strategies mesh better with continuous integration? Would using continuous integration even make sense when using an unstable trunk?

flag

67% accept rate
I would kill to know what you used to make your branching diagrams ! – Jean Feb 28 at 8:40
@Jean, taken from this link. I'll email him and ask what he used: blogs.open.collab.net/svn/2007/… – KingNestor Feb 28 at 10:11
If you liked these diagrams... check this: plasticscm.com/screenshots/gui27/… – pablo Apr 28 at 9:12

5 Answers

vote up 5 vote down

I personally find it much cleaner to have a stable trunk and do feature branching. That way, testers and the like get to stay on a single "version" and update from trunk to test any feature that is code complete.

Also if multiple developers are working on different features, they can all have their own separate branches, then merge to trunk when they're done and send a feature to be tested without the tester having to switch to multiple branches to test different features.

As an added bonus, there is some level of integration testing that comes automatically.

link|flag
yes, but how does that plays with continuous integration? – Freddy Rios Feb 28 at 7:51
Also, do you still branch and tag for each major release? Or just tag? – KingNestor Feb 28 at 7:51
It works well with CI as long as feature branches are merged into trunk with some discipline so as not to have broken builds. I do branch and tag for each production release which will be used for bug-fixing only. That can be merged into the stable trunk immediately. – Adnan Feb 28 at 8:01
@king I would say that probably depends on what you call major release, but in either case you can tag, and branch later when you need it (based on the tag :)) – Freddy Rios Feb 28 at 8:03
vote up 0 vote down

The way I see it you want to have a limited set of branches where you can focus. Since you want tests, code quality metrics, and many interesting things to run with the builds, having too many reports will probably get you to miss info.

When and what to branch, usually depends on the size of the team and the size of the features being developed. I don't think there is a golden rule. Make sure you use an strategy where you can get feedback early/often, and that includes having quality involved from the very beginning of the features. The quality bit, means that as you are automating as the team develops, if you branch for a large feature set a team is building, you gotta have quality involved in the team as well.

ps Where did you get those approach references? - doesn't feel that those graphs represent all the options

Update 1: Expanding on why I said it isn't a golden rule. Basically for relatively small teams I have found it best using an approach that is a mix. Feature branches are created if it is something long and part of the team will continue adding smaller features.

link|flag
blogs.open.collab.net/svn/2007/… – KingNestor Feb 28 at 8:03
It has some more as well. But I feel like Feature Branching and Release Branching are the 2 most common. – KingNestor Feb 28 at 8:04
vote up 3 vote down

The answer depends on the size of your team and quality of your source control and the ability to merge correctly complex change sets. For example in full branch source control like CVS or SVN merging can be difficult and you might be better off with the first model, while if using more complex system like IBM ClearCase and with a larger size of team you could be better of with the second model or a combination of the two.

I personally would separate the feature branch model, where each major feature is developed on a separate branch, with task sub-branches for each change done by individual developer. As features stabilize they get merged to trunk, which you keep reasonably stable and passing all regression tests at all times. As you near the end of your release cycle and all feature branches merge, you stabilize and branch of a release system branch on which you only do stability bug fixes and necessary backports, while the trunk is used for development of the next release and you again branch off for new feature branches. And so on.

This way trunk contains always the latest code, but you manage to keep it reasonably stable, creating stable labels (tags) on major changes and feature merges, the feature branches are fast paced development with continuous integration and individual task sub-branches can be often refreshed from the feature branch to keep everyone working on the same feature in sync, while simultaneously not affecting other teams working on different features.

At the same time you have through the history a set of release branches, where you can provide backports, support and bugfixes for your customers who for whatever reason stay on previous versions of your product or even just latest released version. As with the trunk, you do not setup continuous integration on the release branches, they are carefully integrated upon passing all regression tests and other release quality control.

If for some reason two features are co-dependent and need changes done by each other, you can consider to either develop both on the same feature branch or to require the features to regularly merge stable parts of the code to trunk and then refresh changes from trunk to exchange code between trunk branches. Or if you need to isolate those two features from others, you can create a common branch off which you branch those feature branches and which you can use to exchange code between the features.

The above model does not make much sense with teams under 50 developers and source control system without sparse branches and proper merging capability like CVS or SVN, which would just make this whole model a nightmare to setup, manage and integrate.

link|flag
I'm not sure if I agree that what you describe does not make sense for teams under 50 developers. I can see benefit for much smaller teams as well. +1 – Aardvark Apr 24 at 14:28
vote up 5 vote down

I find the topic really interesting since I heavily rely on branches on my daily job.

I remember Mark Shuttleworth proposing a model about keeping the main branch pristine while going beyond conventional CI. I posted about it here.

Since I'm familiar with Cruise Control, I also blogged about task branches and CI here. It's an step by step tutorial explaning how to do it with Plastic SCM.

Finally, I found some of the topics about CI (and potentially talking about branching) at Duvall's book on CI very interesting too.

Hope you find the links interesting.

link|flag
vote up 0 vote down

Read this: http://oreilly.com/catalog/practicalperforce/chapter/ch07.pdf The short answer: think WHY you branch. you branch to isolate and minimize risk. if you know exactly why and when you branch you won't need a general rule like "always do A or always do B", you'll be able to decide on case-by-case basis. Read the link.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.