Version control approaches in Scrum - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:30:17Z http://stackoverflow.com/feeds/question/628430 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum 6 Version control approaches in Scrum Sam 2009-03-09T23:32:41Z 2009-05-01T17:14:30Z <p>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. </p> <p>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. </p> <p>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)</p> <p>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.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/628442#628442 3 Answer by Chris Ballance for Version control approaches in Scrum Chris Ballance 2009-03-09T23:35:36Z 2009-03-09T23:35:36Z <p>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.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/628462#628462 6 Answer by Andy Hume for Version control approaches in Scrum Andy Hume 2009-03-09T23:44:19Z 2009-03-10T00:06:57Z <p>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.</p> <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/628466#628466 1 Answer by John Saunders for Version control approaches in Scrum John Saunders 2009-03-09T23:45:14Z 2009-03-09T23:45:14Z <p>I would use one branch per release, and use Continuous Integration to keep one user story from damaging the others.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/628644#628644 1 Answer by DancesWithBamboo for Version control approaches in Scrum DancesWithBamboo 2009-03-10T01:41:17Z 2009-03-10T01:41:17Z <p>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.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/628682#628682 1 Answer by David Pokluda for Version control approaches in Scrum David Pokluda 2009-03-10T02:07:42Z 2009-03-10T02:07:42Z <p>The only change you should do to your source versioning system is to integrate it with the continuous integration system (like <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">TeamCity</a> or <a href="http://confluence.public.thoughtworks.org/display/CCNET/Welcome%2Bto%2BCruiseControl.NET" rel="nofollow">CruiseControl.NET</a>). </p> <p>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. </p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/630903#630903 2 Answer by Stephan Schmidt for Version control approaches in Scrum Stephan Schmidt 2009-03-10T15:53:42Z 2009-03-10T15:53:42Z <p>I found a very valuable and exhaustive resource for agile or Scrum version control to be an <a href="http://www.infoq.com/articles/agile-version-control" rel="nofollow">article on InfoQ: </a></p> <p>This article really answers a lot of questions and gives good ideas on agile version control with multiple teams.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/631022#631022 2 Answer by Henrik Gustafsson for Version control approaches in Scrum Henrik Gustafsson 2009-03-10T16:12:34Z 2009-03-10T16:21:20Z <p>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.</p> <p>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.</p> <p>Of course, we all use '<a href="http://git-scm.com/" rel="nofollow">git</a>', 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.</p> <p>Other than that, we do '<a href="http://labs.seapine.com/wiki/index.php/Surround%5FSCM%5FBranching%5FStrategies#Branch%5FBy%5FPurpose" rel="nofollow">branch-by-purpose</a>'. I also wrote a bit more about how we do git <a href="http://stackoverflow.com/questions/605681/605714#605714">here</a>.</p> http://stackoverflow.com/questions/628430/version-control-approaches-in-scrum/809458#809458 2 Answer by pablo for Version control approaches in Scrum pablo 2009-04-30T22:39:55Z 2009-05-01T17:14:30Z <p>That's a very interesting topic actually.</p> <p>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.</p> <p>You can see how it looks like at the following diagram: <img src="http://farm4.static.flickr.com/3354/3439112851%5F133242de6f%5Fd.jpg" alt="alt text" /></p> <p>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!)</p> <p>There's a number of links below that can be helpful:</p> <ol> <li><a href="http://codicesoftware.blogspot.com/2007/04/isolation-branch-per-task-detailed.html" rel="nofollow">Task per branch detailed</a></li> <li><a href="http://www.codicesoftware.com/xpgoagile.aspx" rel="nofollow">Go Agile in 4 steps!</a></li> <li>And a <a href="http://www.plasticscm.com/demos/associatingbranchestotasks-explained/associatingbranchestotasks-explained.html" rel="nofollow">screencast about it here</a>.</li> </ol>