1

If we want to have code reviews before a developer delivers his work, then can you suggest whether multi stream project { i.e., each developer create his own stream and view and later deliver to single stream.} or single stream { i.e., all developers work on same stream } which is advisable.

Adam Lear
32.1k8 gold badges103 silver badges126 bronze badges
asked Jul 12, 2011 at 6:01

1 Answer 1

2

Multi-stream project is fine, and provide natural isolation through branching.

However, it doesn't scale well and force developer to multiple merges if they need to get the work of their colleagues.
So if they can develop in isolation and don't depend heavily and regularly on the work of their peers, multi-stream is fine.

That being said, I prefer this model when each stream represents a development effort, and not a developer (even though you still can match one developer to said development effort): see this answer for more.

answered Jul 12, 2011 at 6:11

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.