Parallel development using streams

When teams are working in parallel on the same code base, you normally create a separate child stream for each feature, based on the mainline stream, and isolate it from the rest of the code base. When the code in a child stream is ready for release, merge it back into the parent stream.

Child streams

Use child streams when:

  • The expected changes are very large and may destabilize the mainline code, cause continuous integration builds to fail, and affect other teams that are working with the mainline.

  • The development work on a feature may not meet the mainline release date. You should develop it in a separate child stream and only merge the changes into the release baseline when they are completed.

Tip: To test the integration between the changes in a mainline (delivered by other child streams) and a child stream, you may want to regularly merge the mainline into the child stream. This enables you to resolve, fix, and test any issues before you merge the child stream into the mainline. The merge operation is then easier and safer.

Back to top

Parallel development workflow

The following diagram illustrates a typical parallel development workflow using streams:

typical_stream_parallel_dev.png

The following steps describe the typical workflow using streams:

  1. Create a child stream.

    Create a new child feature stream based a baseline or a version of the parent mainline stream.

  2. Develop the child stream.

    1. Create a local work area for the child feature stream.

    2. Use the Update or Get operations to populate the work area with the contents of the child stream.

    3. Make changes to the files in the work area.

    4. If other members of your development team are working on the same child stream, fetch their latest changes from the repository to the work area. Resolve conflicts, build, and test the changes.

    5. Deliver your changes to the child feature stream.

  3. Merge the mainline into the child stream.

    If the mainline stream is being updated in parallel by other teams, regularly merge the changes from the mainline into the child stream:

    1. Create a temporary local work area for the merge operation.

    2. Use the Update or Get operations to populate the work area with the content of the child stream.

    3. Invoke the Merge wizard for the work area and select the mainline stream as the source and the child stream as the target of the merge operation.

    4. After you have successfully merged the mainline stream changes into the local work area, build and test the code.

    5. Deliver the changes to the child stream.

    For details about merging, see the following topics:

    Web client: Merge changes across streams
    Desktop client: Merge changes across streams
  4. Merge the child stream into the mainline.

    When the child stream changes are ready to be merged into the mainline, perform the merge described above in the opposite direction:

    1. Create a temporary work area for the merge operation.

    2. Use the Update or Get operations to populate the work area with the content of the mainline stream.

    3. Invoke the Merge wizard for the work area and select the child stream as the source and the mainline stream as the target of the merge operation.

    4. After you have successfully merged the child stream into the mainline, build and test the code.

    5. Deliver the changes to the mainline stream.

  5. Next steps.

    After the child stream has been delivered successfully to the mainline:

    • Continue to develop source code based on the child stream.

    • Switch to another feature, project or release, and create a new child stream. You can optionally lock or delete previous child streams.

Back to top

See also: