vote up 4 vote down star

I want to be able to choose the right branching strategy for most thinkable situations and organizations. So I'm looking for a extensive list of positive and negative effects of extending the use of code repository branches in a development organization.

Please only post one pro or one con in each post, so that the voting system can help rank the feedback somewhat.

flag
You can't format the responses this way. People should answer however they choose too, and then others will comment on it, so there is a dialog. Rather than limiting people in how much they can say. – devinb May 13 at 12:29
People can say how much they want about a certain pro or con. I just want to prevent ambiguity. I think the subject matter should be ranked, rather than a certain person's comprised view of pros and cons. – R.A May 13 at 12:38

11 Answers

vote up 0 vote down

Pro: Greater flexibility in diverging code for the purpose of simultaneously developing on or supporting multiple streams of work.

link|flag
vote up 0 vote down

Con: someone has to manage the branch(es) and keep on top of things. In most teams this falls by the way-side.

link|flag
vote up 1 vote down

Con: Having too many branches in the air at the same time and you start forgetting where things where commited, where changes have been made etc.

link|flag
vote up 2 vote down

Pro: Branches can be used to facilitate 'what-if' scenario's in trying out new code. At the end a decision can be made to merge the new feature or to abandon it.

link|flag
vote up 0 vote down

Con: Merge nightmare.

link|flag
Yes, if using underperforming tools like Sourcesafe, TFS or Subversion. Less so with a DVCS like git or Mercurial. – Sardaukar May 13 at 12:07
vote up 0 vote down

Pro: Each update is independant from the others, so work can be parallelized.

link|flag
vote up 3 vote down

Pro: By keeping latest deployed version in trunk, small fixes can be rolled out quickly without extensive testing of the latest development version.

link|flag
vote up 2 vote down

Con (and it can be a big one): Merging back at a point in the future. The longer the duration and the greater the deviation of code base, the harder your life will be. My advice: think very carefully about branching and ensure you only do it when necessary and consider the effort involved in merging at a later date should it be required.

link|flag
maybe devide into two answers? – R.A May 13 at 11:58
All done, try it now. – Troy Hunt May 13 at 21:06
This is a limitation of the older version control systems without easy branching and merging. Try using Git, Mercurial or other similar ones. – Neil Jun 1 at 18:24
vote up 3 vote down

Pro: if you have many branches you'll be pushed to adopt a modern DVCS (my experience is with Mercurial but I hear git or Bazaar are also good) rather than stay with a traditional centralized system (like, say, svn).

link|flag
vote up 0 vote down

Con: Greater learning threshold for junior developers.

link|flag
vote up 3 vote down

Pro: Developers can work more freely in tighter iterations without stepping on eachother's feet.

link|flag

Your Answer

Get an OpenID
or

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