5

The probjem is that I have two sets of bugs top fix on the project. One to deploy in 5 days, and one to deploy in 10 days.

I am going to solve all the bugs before the fifth day but I do not want to deploy the last 5 before the release date (in 10 days).

How can I work on two separate codes and the merge all the modification?
Is it possible?

Do I have to create a branch?

asked Jul 4, 2012 at 22:10
6
  • You could branch for each bug at the same time, resolve potential conflicts when merging them back, or, branch out for the first, merge back and then branch out for the second. There may be other ways of approaching this too. Was this the question about? Am I missing something? Commented Jul 5, 2012 at 2:14
  • tortoiseGit is great. Commented Jul 5, 2012 at 4:33
  • I need a step-by-step adice to solve the problem Commented Jul 5, 2012 at 7:18
  • unwillingness to deploy two fixes instead of one indicates architecture / management issues rather than those of version control Commented Jul 5, 2012 at 7:54
  • 2
    The DVCS comment is bad because the question is about process/procedures not technical issues with the tooling - it may well be that for a given process dvcs will help but it doesn't actually address the question - its like answering "how do I find a better route to drive to work" with "buy a new car". Process first, tooling if necessary second. Commented Jul 5, 2012 at 8:39

1 Answer 1

2

Branching. Separate Branch for each bug (or batch of bug fixes), then you have complete control on when you merge back (ie release) the fixes. The book http://svnbook.red-bean.com/ is pretty good - work through that, or I'm sure there are lots of tutorials online.

answered Jul 5, 2012 at 7:49

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.