show/hide this revision's text 2 added 366 characters in body
  1. Do all development on a branch, committing to the branch as you go.
  2. Code Review the changes once all development is complete.
  3. Then pass the branch over to Testing.
  4. Once branch testing complete, merge code into release candidate Release Candidate branch.
  5. Release Candidate branch is regression tested after each individual merge.
  6. Final QA and UA Testing performed on RC after all dev branches merged in.
  7. Once QA and UAT are passed, merge release branch into MAIN/TRUNK branch.

We currently Code Review manually, but I am pushing to get Atlassian Crucible+FishEye setup, which will make the process much easier.


Pair programming can be useful when you have two people with differing perspectives working on a specific problem. Or to teach one developer about code they are unfamiliar with, but the other one knows well.
However, for general development it can be very time consuming, and wastes resources that could be working on two separate things.

show/hide this revision's text 1
  1. Do all development on a branch, committing to the branch as you go.
  2. Code Review the changes once all development is complete.
  3. Then pass the branch over to Testing.
  4. Once branch testing complete, merge code into release candidate branch.
  5. Release Candidate branch is regression tested after each individual merge.
  6. Final QA and UA Testing performed on RC after all dev branches merged in.
  7. Once QA and UAT are passed, merge release branch into MAIN/TRUNK branch.

We currently Code Review manually, but I am pushing to get Atlassian Crucible+FishEye setup, which will make the process much easier.