SVN Workflow - Chicken Before the Egg - Before merging V1 with V2, I need code from V1 to work on V2

Posted by Jake on Stack Overflow See other posts from Stack Overflow or by Jake
Published on 2010-05-13T00:33:19Z Indexed on 2010/05/13 0:34 UTC
Read the original article Hit count: 516

Hi,

Our distributed team (3 internal devs and 3+ external devs) use SVN to manage our codebase for a web site. We have a branch for each minor version (4.1.0, 4.1.1, 4.1.2, etc...). We have a trunk which we merge each version into when we do a release and publish to our site.

An example of the problem we are having is thus: A new feature is added, lets call it "Ability to Create A Project" to 4.1.1. Another feature which depends on the one in 4.1.1 is scheduled to go in 4.1.2, called "Ability to Add Tasks to Projects".

So, on Monday, we say 4.1.1 is 'closed' and needs to be tested. Our remote developers usually will start working on features/tickets for 4.1.2 at this point. Throughout the week we will test 4.1.1 and fix any bugs and commit them back to 4.1.1. Then, on Friday or so, we will tag 4.1.1, merge it with trunk, and finally, merge it with 4.1.2. But, for the 4-5 days we are testing, 4.1.2 doesn't have the code from 4.1.1 that some of the new features for 4.1.2 depend on.

So a dev who is adding the "Ability to Add Tasks To Projects" feature, doesn't have the "Ability to Create a Project" feature to build upon, and has to do some file copy shenanigans to be able to keep working on it.

What could/should we do to smooth out this process?

P.S. Apologies if this question has been asked before - I did search but couldn't find what I'm looking for.

© Stack Overflow or respective owner

Related posts about svn

Related posts about feature