vote up 6 vote down star
2

Recently with my coworkers we were discussing how to organize the version control in a Scrum project. More specifically, the criteria for branches creation (per developer, per task, per Story, per Sprint?) and the methods of integration.

My opinion was that a useful way to organize it is to create a branch for each User Story, so you can integrate each Story in the releasable trunk once it is completed and it also allows that you always have a "deliverable version" of the application at any moment.

So if a story cannot be completed, it can be just left out and does not compromise the sprint release. (That considering a centralized tool, may be if using a distributed one the considerations would be different)

I'd like to know your own approaches, which kind of tools you prefer and the pros and cons that you have seen with the experience and the lessons learned.

flag

8 Answers

vote up 2 vote down check

I found a very valuable and exhaustive resource for agile or Scrum version control to be an article on InfoQ:

This article really answers a lot of questions and gives good ideas on agile version control with multiple teams.

link|flag
Great article! It clarified my ideas a lot. Thanks! – Sam Mar 10 at 17:57
My pleasure, helped me a lot too. – Stephan Schmidt Mar 11 at 9:46
I use the strategy described by H. Kniberg too. I like the idea of using development branches per team and the trunk for DONE stories. This solution minimizes branches and merges, scales with multiples teams and allows you to release working software at any time. In other words, it works perfectly. – Pascal Thivent Mar 12 at 2:18
vote up 6 vote down

Keep branching protocol light-weight. In Scrum, if someone wants to branch the code to work on a specific feature, let them. Nobody should be afraid to branch. This is one of the benefits of DVCS - people branch when they want and aren't biased by team rules or standards.

For my money, it's a case-by-case basis, and if you start seeing patterns in your development processes then formalize them so everyone is on the same page.

Just make sure that every developer understands that it is their responsibility to integrate and merge their changes. That should set the bar to around about the right place to ensure people make the right call as to when to branch the code.

link|flag
How is branching for individual features keeping things lightweight? You always have to pay integration costs, whether when checking into the trunk, or when merging branches. I prefer not to have to merge branches unless it's really necessary. – Chris Ballance Mar 10 at 0:02
I mean keep the protocol leight-weight. Nobody should be afraid to branch. This is one of the benefits of DVCS - people branch when they want and aren't biased by team rules or standards. – Andy Hume Mar 10 at 0:06
vote up 3 vote down

A branch per user story sounds quite excessive to me. We keep a single code base (trunk) and work out of this. The only time we would normally branch is to fix a current production problem which could not wait until a regular release.

link|flag
I see your point, but sometimes a problem that arises with single codebases is that people is afraid of commiting until having the feature completed to avoid breaking everyone's code. Thus, losing the advantages of versioning in first place. – Sam Mar 10 at 0:09
That's absolutely not a problem so long as this is the exception rather than the rule – Chris Ballance Mar 10 at 0:14
vote up 2 vote down

Whenever we have a story or a set of stories that threatens to leave the master branch in disarray for several days or involves 'many' developers we create a branch for that (not very common, we try to task things to avoid this, but it happens) as a sort of risk-mitigation thing. We want to be sure that the master branch is always ready for release at the end of each sprint, even if it potentially means that we might not have increased the value of the master branch after the sprint.

The story/feature/task branch is synchronized against the master branch very often, and the goal is to always have the branch merged back well before the end of the sprint.

Of course, we all use 'git', so in effect we always have a local branch that we work on, and we've become pretty good at synchronizing with master often enough to avoid big-bang integrations and seldom enough to not leave useless/unused code in the master branch.

Other than that, we do 'branch-by-purpose'. I also wrote a bit more about how we do git here.

link|flag
vote up 2 vote down

That's a very interesting topic actually.

We always enforce branch per task creation, in fact, each task (not story, but actual tasks as decomposed after the scrum planning meeting) will have at least one associated branch.

You can see how it looks like at the following diagram: alt text

This makes things like encouraging peer reviews very easy, since the team can checked what was modified on a task (branch), even when developers decided to make many intermediate commits (which is a very good practice!)

There's a number of links below that can be helpful:

  1. Task per branch detailed
  2. Go Agile in 4 steps!
  3. And a screencast about it here.
link|flag
vote up 1 vote down

I would use one branch per release, and use Continuous Integration to keep one user story from damaging the others.

link|flag
vote up 1 vote down

I don't see how a branch per feature can make you more agile or lean. The cost of branch management is just too high. I would argue that if you feel you need a branch per feature then your stories are too big. A story should be completed by the next scrum and if not, certainly by the next one. So if a branch only exists for 1-2 days I don't see how it can be useful or its cost repaid. It is routine for many people to work on a story so I sometimes use a dev branch for developers to work in so that they can merge code Many times per day while working on the same story without the code being deployed to test (main branch). Ideally you would have so few stories in progress and complete them so fast that you would only need the Main branch and no others.

link|flag
1  
I came from a company where one branch per ticket (story, in this case). It works well because you isolate changes for each piece of work, and can check in frequently without fear of breaking the main line. Strict merge policy prevented incomplete or broken code making it to mainline too. – Adam Hawes Mar 10 at 1:55
vote up 1 vote down

The only change you should do to your source versioning system is to integrate it with the continuous integration system (like TeamCity or CruiseControl.NET).

Yeah I know that I am not really answering your question but I really mean it. In agile software project you want to be able to release the product to customers (or be able to) as often as possible. That's why you need to know that whatever is in your source system is working or if it is not working why it is not working.

link|flag

Your Answer

Get an OpenID
or

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