Plastic SCM - Step by step Tutorial


Lesson 0 - Installation, configuration, and concepts

In this lesson, you'll:

  • Install Plastic SCM for Windows, Linux, or Mac OS.
  • Set up Plastic SCM.
  • Review the fundamental concepts of Plastic SCM.

Download Plastic SCM

  1. Visit the Plastic SCM download page.
  2. Explore the More installers, Previous releases or Labs downloads links to download the last release, or any other release.
  3. You can:
    • Download a 5-day free trial license.
    • Sign up to get a 30-day free trial license for 5 users (you will receive an email with the download instructions).

These are the supported operating systems: Microsoft Windows, Linux, and Mac OS.


Install Plastic SCM

Complete the Plastic Server and Client installation steps related to your operating system.


Set up Plastic SCM

  1. The Plastic SCM Server is configured with the default values. But, as an administrator, you can configure the server with the required settings.
  2. The first time you open your Plastic SCM Client, the client configuration dialog opens. This allows you to connect to the Plastic SCM Server.

You must configure:

  • The name and port of your Plastic SCM Server.
  • The user's credentials.

Fundamental concepts of Plastic SCM

This section will help you understand the terminology used to describe concepts in Plastic SCM. Since these terms will be used throughout this tutorial, you must understand their meaning.

Here are a few concepts that you'll need to know:

Repository

The repository typically contains a project:

Repository
Workspace

The directory where you store your sources:

Workspace

Items

The content of your workspace - files and directories:

Item

Branch

The place in the repository where you're currently working. You can create new branches then switch to them, compare their content, merge them, replicate them, and much more:

Branch

Changeset

The individual checkin you made:

Changeset

Label

A label is a name assigned to a specific changeset. It represents the state of your code on a specific branch and point in time.

Label

Lesson 1 - Adding the initial code

Welcome to the Plastic SCM world! This lesson uses a straightforward scenario to walk you through setting up your project using Plastic SCM. This lesson covers:

  • The basic structure of a repository and a workspace.
  • How to add your code to the version control, configure the ignored list and create your first label.

Create a repository

Tip: Use the Previous (<) and Next (>) arrows to replicate a specific step in Windows, Linux, and Mac OS.

Remember, the repository is the "database" where changes are stored.

  1. Click the Repositories menu option to display the repositories view:
    Click on Repositories
  2. Click the New repository button:
  3. Enter a name for the repository and specify the server in the New repository dialog:
    Dialog to create new Repository
  4. Click OK to create the new repository.

Create a workspace

Tip: Use the Previous (<) and Next (>) arrows to replicate a specific step in Windows, Linux, and Mac OS.
  1. Navigate to the actions bar on the right and click the Workspaces menu option to show the Workspace view:
    Workspaces
  2. Click the Create new workspace button:
    Create new workspace
  3. Select a repository to work in:

    Plastic automatically chooses dokannet as the name for the workspace and the workspace path to store the data locally.

    The workspaces list updates each time you create a new workspace.

  4. Double-click the dokannet workspace to open the workspaces list:
    Workspace created

Add code to your workspace

Complete the steps to add code to your new workspace. The example below uses a sample code uploaded to GitHub.

  • In Windows:

    Navigate to the actions bar on the right and click the Branch Explorer menu option:

    Branch Explorer

    Right-click the main branch > Replication > Sync with Git:

    Replicate some code

    In the Repository URL field, enter the following: https://github.com/PlasticSCM/dokannet:

    Replicate some code

    Click the Sync button to download (synchronize) the code into your workspace:

    Replicate some code

    Close the dialog.

    Complete the steps in Windows.

  • In Mac OS:

    Open your terminal and run:

    cm sync dokannet@localhost:8087 git https://github.com/PlasticSCM/dokannet

    You'll get a similar output:

    Replicate some code

    Complete the steps in Mac OS.

  • In Linux:

    Open your terminal and run:

    cm sync dokannet@localhost:8087 git https://github.com/PlasticSCM/dokannet

    You'll get a similar output:

    Replicate some code

Navigate to the Branch Explorer view and refresh the page. You'll see a new changeset. Complete one of these steps to update the workspace with the downloaded code:

  • Right-click the new changeset click Switch workspace to this changeset .
  • Or, select the branch and click Switch workspace to this branch.

Replicate some code

The Branch Explorer looks like this:

Branch Explorer updated

To view the Workspace Explorer in your workspace, navigate to Main actions > Workspace Explorer:

Workspace Explorer

Your workspace will have the downloaded code:

Workspace updated

Plastic SCM marks all files and directories as Controlled. This means they're under the Plastic SCM control.


Create a label

The Branch Explorer will render the repository's history graphically.

The image below shows a branch and two changesets. The current changeset (circle with the house icon) and the initial changeset (the solid circle on the left), which Plastic SCM created by default during the repository creation.

Right-click the current changeset (circle with the house icon) and click Label this changeset:

Click on label

Enter BL00 in the label name field and enter a comment:

Create initial Label

Your Branch Explorer looks like this:

Initial label on Branch Explorer

Labels are used to mark stable releases in your project. To "save" a secure status that you can recover later if you wish, right-click the current changeset (circle with the house icon) and click Switch workspace to this label:

Switch workspace to this label


Lesson 2 - Modify the code

Your code is constantly changing. Once you deploy your project, you will continually be modifying files.

This lesson covers managing every change in your code under version control and seeing the differences with older versions of your files with the Plastic SCM GUI.


Checkout to edit

Checkout in Plastic SCM means:

  • The file is modifiable (even if it was not by default).
  • Plastic SCM detects that the file has been modified (which is good for quickly locating changes).

To checkout, right-click the file and select the Checkout menu option:

Checkout operation

Plastic SCM marks the file as checked-out:

Item checked-out


Configure the ignored files list

In the DokanNet folder in the Workspace Explorer, there are bin and obj subdirectories. These folders will never need to be checked in, so they need to be added to the ignored list.

The ignored list contains rules that lets Plastic SCM know that it should ignore specific files and not track them.

Right-click the obj folder and click Add to ignored list, and select the obj option:

Add 'obj' to the ignored list

To add every obj folder in all your workspaces to the ignored list, select the Apply rules to all workspaces checkbox:

Add to the ignored list - All workspaces

Repeat the process for the bin, and you see something like this:

All ignored files

You can add private items to the ignored list. Then, an ignore.conf file will be created containing the ignored items.

If you also add the ignore.conf file to the ignored list, it'll stop appearing in the Pending changes view.


Modify a file

Run a checkout and open the file you want to edit.

In the example scenario, to modify the DokanNet.cs file, run a checkout and open the file to edit it.

Modify file

Modified line 119 and replaced DOKAN string with DOKAN-NET string.


Check the difference in the Pending changes view

Navigate to the Pending changes view to see the files you've modified so far:

Plastic SCM 'Pending Changes' view

The Pending changes view lists the files you previously checked out. Notice the changed file - this is the file the IDE modified when it's opened.

Click the Show diffs button to see the line that you modified:

Plastic SCM 'Diff' view

The Show diffs button allows you to inspect the differences in every file before checking them in.


Make a checkin

When you've completed the changes in your file, you can perform a checkin to save them. Enter a comment first, then click the Checkin button:

Plastic SCM 'Pending Changes' checkin


Show the Diff

Navigate to the Branch Explorer to see the current state of the repository. You see something like this:

Branch Explorer

In the branch, there are now three changesets:

  • The initial changeset
  • The changeset with the label Baseline00 above it
  • The current changeset (house icon)

Right-click the current changeset.

  • In Windows

    Click Diff changeset:

    Branch Explorer

  • In Mac OS

    Click Diff with previous:

    Branch Explorer

  • In Linux
  • Click Diff with previous:

    Branch Explorer

You'll see a comparison of the previous content with the current one in a new window. This window has three sections of information:

  • Top - Information about the changeset and its author, and the comment you wrote upon check in
  • Middle - The list of items being compared
  • Bottom - The diffs between the current changeset (number 2 or cs:2) and the previous (number 1 or cs:1) changeset

Diff View


Lesson 3 - Moving, deleting and renaming

In this lesson, you'll be able to move, rename, and delete a file.

This lesson teaches you how Plastic SCM performs these common file operations and how it reverts to a previous revision.


Move a file

For example, to move the license.txt file, right-click the license.txt file and select Cut:

Moving a file

To move the license.txt file to the \sample directory, paste the license.txt file in that directory using the Paste context menu option.

After you perform this operation, your Workspace Explorer looks like this:

Workspace Explorer

The Pending changes view shows what you've modified so far:

Pending changes View

The picture above explains the steps you just performed: source and destination of the move and the status changed to moved.

You can now check in the change. Don't forget to add a comment to document the change. For example, license.txt file moved to 'sample' directory.


Delete a file

The next operation is deleting a file that is under the Plastic SCM control.

Right-click the readme.txt file and select the Delete menu option:

Deleting a file

In the Delete confirmation dialog, choose whether you want to keep the file on disk or not:

  • In Windows:

    Delete confirmation

    If you want to remove a file from the version control, but want to keep it in your disk (like a temporary file that you mistakenly added), select the Do not delete items on disk option.

    For this scenario, select the Do not delete items on disk option.

  • In Mac OS:

    Delete confirmation

    If you want to remove a file from the version control but want to keep it in your disk (like a temporary file that you mistakenly added), select the Remove item(s) from version control option.

    For this scenario, select the Remove item(s) from version control option.

  • In Linux:

    Delete confirmation

    If you want to remove a file from the version control, but want to keep it in your disk (like a temporary file that you mistakenly added), select the Remove item(s) from version control option.

    For this scenario, select the Remove item(s) from version control option.

The Pending changes tab looks like this:

Pending changes View

Notice the file is listed twice:

  • One instance is Added - The status is Private (the file is kept on the disk as per the previous step).
  • Second instance is Deleted - The status is Removed (removed from version control).

In the Workspace Explorer, notice that the status of the deleted file is Private. This means that the file is not under source control anymore, and it is displayed without a customize icon and no entry in the Type, Branch, or Changeset columns:

Workspace Explorer

If you switch to the Pending changes view, you can Checkin the deleted item. Don't forget to enter a comment briefly explaining the change:

Checkin


Rename a file

Renaming a file is equivalent to moving the file. But a rename operation is a move inside the same directory.

Right-click the file you wish to rename and select Rename:

Renaming a file

Enter a new name:

Windows Dialog

The Pending changes view now looks like this:

Pending Changes View

Notice that the status of the file has changed to Moved. This is because Plastic SCM knows the file is renamed.

You can now Checkin the moved item. Don't forget to enter a comment briefly explaining the change:

Checkin


Undo changes

In the below scenario, you'll learn how to undo the changes you've made in your workspace.

Start by modifying the DokanNet\DokanNet.cs file. Checkout the file and add the following edits:

Modifying a file

Save the changes and navigate to the Pending changes view to see the modified file. Click the Show diffs button to compare the previous content with the current one. The diffs look like this:

Show Diffs

You can undo the changes you've made to the file.

  • In Windows

    Complete any of the following actions:

    • In the Text diff view, navigate to any change you want to undo and click "undoUndo every change." Click Save.
    • Or click the Undo changes button in the toolbar to undo all the changes on every selected item. Confirm the undoing changes:

      Confirm undoing changes

  • In Mac OS

    Click the Undo changes button in the toolbar to undo all the changes on every selected item. Confirm the undoing changes:

    Confirm undoing changes

  • In Linux

    Click the Undo button in the toolbar to undo all the changes on every selected item. Confirm the undoing changes:

    Confirm undoing changes


Lesson 4 - Transparent SCM

In this lesson, you'll learn all about the Transparent Version Control feature.

The Transparent feature eliminates the worry associated when moving or renaming files and losing the synchronization with the version control. With Plastic SCM, you can work with your files, change them, move them around, create new ones or remove them.

When you're ready to check in your changes, navigate to the Pending changes view. Plastic SCM detects all the actions and records them to the repository with a single click.


Intro to Transparent SCM

The previous lesson followed the checkout-edit-checkin workflow. Using this workflow, you have to tell Plastic SCM that you will perform a specific operation on a file.

In these scenarios, you'll use the very extended edit-checkin workflow, popular on most open-source version controls (SVN, CVS, Git, and many others).

In Plastic SCM, this is called transparent working mode because Plastic SCM can detect everything you've done in your workspace and propose it for checkin.


Find changes

Open the DokanNet\DokanNet.cs and DokanNet\DokanOperation.cs files in the IDE tool, but don't check them out.

Modify the DokanNet\DokanNet.cs file by deleting line 149:

Modifying a file

Modify the DokanNet\DokanOperation.cs file by uncommenting the range from line 43 to line 49:

Modifying other file

Navigate to the Pending changes view to check what you've modified. The Pending changes view detects the files you've modified. Because you didn't check them out before editing, the status value is Changed instead of Checked-out:

  • In Windows

    Pending Changes View

  • In Mac OS

    Pending Changes View

  • In Linux

    Pending Changes View

Check in the changed files. Don't forget to enter a comment.


Let Plastic SCM detect a moved file

The next step is to move a file in your workspace and let Plastic SCM detect it.

Move the lic.txt file from the sample\ folder to the root folder. Complete this step outside of Plastic SCM, for example, using Windows Explorer. Note that this operation involves both the move and rename operations.

Open the Pending Changes view. Plastic SCM detects the moved file, and the status is Moved locally. Note the Similarity column. This column shows the percentage of similarity between files. Plastic SCM tries to match moved files with private files to determine if it's the same file. Only locally moved items have a value in this column:

Move a file and detect it

The Similarity value is 100% which means it's the same file.


Move a modified file

You may decide to move a previously modified file.

Modify the DokanNet\DokanNet.cs by adding a new line. But don't check it out:

Change a file

Open Windows Explorer and move the changed DokanNet\DokanNet.cs file to the DokanNet\Properties directory. This is what the Pending changes view looks like after moving the file:

Move a modified file

Status is set to moved locally. Similarity is set to 99,49% because you modified the file before moving it. Plastic SCM can detect it as the same file because the content matched at 99%.


Delete a file

Open Windows Explorer and delete the DokanNet\Proxy.cs file. After deleting the file, the Pending changes view looks like this:

Delete a file

Note that the status column is currently set to Removed locally, which means that the controlled file was deleted from the workspace outside Plastic SCM.


Detect moved directories

You can move directories in Plastic SCM. For example, open Windows Explorer and move the RegistoryFS folder from the sample directory to the DokanNet directory:

Moved Directory

Note that the Status is set up to Moved locally, and the Similarity column contains 100%.

Plastic SCM identifies and displays only the directory that was moved instead of displaying all files inside as moved.


Check in

At this point, you can Checkin in all the changes. Don't forget to add a comment when you check in all files (deleted and moved) to document the change:

Check in


Check the differences

Navigate to the Branch Explorer to see the current state of the repository:

Branch Explorer

Right-click the current changeset.

  • In Windows

    Click the Diff changeset button:

    Diff Changeset

  • In Mac OS

    Click the Diff with previous button:

    Diff Changeset

  • In Linux

    Click the Diff with previous button:

    Diff Changeset

Now you see a comparison of the previous content with the current one. And, the diff looks like this:

Diff View

There are several diffs and you can show each of them by clicking the arrows.


Lesson 5 - Working on branches

In this lesson, you'll learn all about branches. Branches offer a way to isolate different lines of development from each other, often called Parallel Development.


Why should I create branches?

Branching is a concept that is very fundamental to source control.

The basic concept of a branch is a line of development that exists independently of another line and shares a common history. A branch always begins its life as a copy of something and moves on from there generating its own history.

Branching is a very efficient process. You can easily work with feature branches or go even further and use task branches, the model that Plastic SCM recommends.

Plastic SCM implements task-driven development very efficiently through the well-known branch per task pattern. To learn more, click the following links:


Create a "baseline"

In simple terms, a baseline is a label.

It's a snapshot of your code at a given point in time. It's a mark, a tag that you can use to rebuild this status later if you need to.

To create a label, open the Other actions left action bar > Labels:

Creating a baseline

Your Labels view looks like this:

Labels view

  • In Windows

    Click the Create new label button.

  • In Mac OS

    Right-click the Labels view and select Create new label:

    New label action

    In Linux

    Right-click the Labels view and select Create new label:

    New label action

In the New label dialog, enter the name and comment for the new label. This example uses Baseline01 for the name:

New label

Note the Changeset to label field. It tells Plastic SCM where the label is applied. The default value is the current changeset loaded in the workspace. In this example, the changeset is number 7.

Now, you've got another label to mark a stable release in your project. Once the label is created, your Branch Explorer looks like this:

Branch Explorer


Create a branch

Navigate to the Branch Explorer to create your first branch.

The current changeset on your workspace is represented with a house icon. Right-click this changeset and click Create branch from this changeset:

Creating a branch

In the New branch dialog, enter scm001 for the branch name and a comment:

New branch

The Plastic SCM team works with the Branch per task model. This means that every development task is a new branch.

Select the Switch workspace to this Branch checkbox to start development in the new Branch.


Make changes in the branch

Navigate to the Branch Explorer and check the current state:

Current state

Select the new branch and click the Options button in the toolbar. On the right, you will see the properties of the branch:

Properties of the branch

Now to make some changes to the branch!

Navigate to the Workspace Explorer to add the readme.txt file. Right-click the file and select Add to source control:

Add a file

The file is now added and checked out:

Workspace Explorer

Navigate to the Pending changes view and check in the change to confirm the added file:

Workspace Explorer

Now, modify the readme.txt file by adding a line at the beginning. First, check out the file and double-click to open it, or right-click the file and select Open.

Navigate to the Pending changes view and check what you've modified:

Pending Changes

You can now enter a comment and checkin the change.

Navigate to the Branch Explorer to check our new branch. Now you have two changesets in the scm001 branch: the first one you created when you added the readme.txt file, and the second one with the latest change:

Current Branch

Now to add a new change in the branch. Navigate to the Workspace Explorer, checkout the lic.txt file, and open it. To modify it, delete lines 10 and 11:

Modifying the file

Navigate back to the Branch Explorer. You can see a house with a dashed circle outline. This is the icon for checked-out changesets:

Branch Explorer

The house with dashed a circle outline means:

  • It will be the next changeset.
  • It is pending to check in.

Navigate to the Pending changes view to see what you modified. Then, add a comment and run a Checkin:

Pending Changes

If you go back to the Branch Explorer, you can see the current state of the current scm001 branch:

Branch Explorer

The example above shows several checkins in the scm001 branch.

If you checkin often, it will be easy for you to understand all the changes. This means that you are self-documenting the code.

You can read more about it at the Self-documented development through inch-pebble checkins blog post.


Lesson 6 - Merge changes

Lesson 5 covered working on the main branch, creating new branches, switching to them, and making changes.

This lesson will show you how the merge process works in Plastic SCM.


Create a branch from a changeset

Navigate to the Branch Explorer and check the current status. To go back to the main branch, right-click the main branch and click Switch workspace to this branch:

Switch workspace to this changeset

You see something like this:

Current changeset at main branch

Complete the steps to create another branch from the last changeset on the main branch:

  • Right-click the current changeset, and click Create branch from this changeset.
  • Write a branch name, for example:scm002 (for task002).
  • Click OK.

Your Branch Explorer looks like this:

Branch Explorer

Navigate to the Workspace Explorer.

Check out the lic.txt file and modify it by adding a new line at the top.

In the Pending changes view, you can see this modification:

Pending Changes

Add a comment (for example, Added new line) and run a Checkin.

Navigate back to the Branch Explorer to see the current state of your workspace:

Pending Changes


First merge

Right-click the current branch and select the Switch workspace to this branch to return to the main branch:

Switch workspace

The Branch Explorer before the merge will look like this:

Branch explorer

Right-click the scm001 branch and select Merge from this branch:

Merge from this branch...

The Merge from this branch view looks like this:

Merge view

Note the columns:

  • Changes only in source contributor - Changes only in the source contributor. This means that these changes are only in the scm001 branch.
  • Added on source - The item was added in the scm001 branch.

Click the Process all merges button at the top of the toolbar to process the merge:

Process all merges

Your first merge is complete! There aren't any merge conflicts. And the main branch contains the changes made on the scm001 branch.

Navigate to the Branch Explorer to see the current status of the workspace:

Branch Explorer after merging

In the figure above, there are two new things to note:

  • Checked-out changeset - The changeset with the "house" and the dashed circle outline.
  • Pending merge link - The dashed green line with an arrow at the end.

This is because you created a merge from the scm001 branch to the main branch, so a new changeset is going to be created after the checkin action.

Navigate to the Pending changes view:

Pending Changes

Note that:

  • The branch, where you are going to checkin, is the main branch.
  • The status is Replaced (you modified an existing file) and Copied (new) (you added a new file).
  • Both changes come from changeset 10.
  • It reminds you that there is a pending merge to checkin.

You can now Checkin the changes from the merge. Don't forget to add a comment explaining the change. For example: Merge from scm001 branch to the main branch.


Merge back to "main"

Navigate to the Branch Explorer to see the current status of the repository:

Branch Explorer

Make a merge from scm002 branch to main branch. Right-click the scm002 branch and select Merge from this branch:

Merge from this branch

Merge from branch view:

Merge Branch View

Note the two columns marked:

  • Remarks - Shows a short description of the conflict for each item. In this case, there are changes in both source and destination contributors.
  • Contributor - Displays the actions that will be run when the Process all merges button is clicked.

If you want to dig deeper to learn more about the merge, click the Explain merge button at the top in the toolbar. The Merge explanation view looks like this:

Merge Explanation

Note the 3 important terms:

  • Source (src) - Shows the revision you are merging from (scm002 in this case).
  • Base - The initial revision (Baseline01 in this case).
  • Destination (dst) - Shows what you have right now in your workspace. A new changeset will be created on the main branch. It will contain the merge result.

Return to the Merge from branch view and click Process all merges.

The Branch Explorer looks like this:

Branch Explorer

There is a new changeset pending check in so navigate to the Pending changes view and check the modified file.

The Pending changes view lists the file you previously merged. Click the Show diffs button to see the line you've modified:

Pending Changes

You can inspect the difference before the checkin merge operation to ensure that the code has been correctly merged.

Enter a comment (for example, Merge from scm002 branch to main branch) and click the Checkin button.


Test in baseline

Navgigate to the Branch Explorer to create a new baseline.

  • Right-click the current changeset and click Label this changeset
  • In the New label dialog enter Baseline02 for the label name and enter a comment:

Create a Label

Your Branch Explorer looks like this:

Merge + Label

A Baseline is a line that forms the base for any construction, comparisons or calculations. The objective of a baseline is to reduce a project's vulnerability to uncontrolled change by fixing and formalizing change by controlling critical points in the development life cycle.

Baseline02 is where you would make up the Unit Tests that can help you ensure the code quality.


3-way merge: Manual conflicts

In this section, you'll modify the same section of code in the same file.

You'll create two new branches.

Navigate to the Branch Explorer and right-click the current changeset. Then, select Create branch from this changeset and enter scm003 as the branch name and add a comment:

New branch

Or right-click the main branch and select the Create child branch.

Check out the DokanNet\Properties\DokanNet.cs file and modify it by adding new lines at line 117.

Navigate to the Pending changes view and check what you've modified:

Modifying a file

Checkin the file. Don't forget to comment (for example, Adding new conditions on DokanNet.cs file to document the change.

Navigate to the Branch Explorer to see the current status of the repository:

Branch Explorer

Right-click the main branch and select the Switch workspace to this branch to return to the main branch:

Switch workspace to this branch

To create the second new branch from the Baseline02 label, navigate to the Branch Explorer, right-click the current changeset and select Create branch from this changeset. Enter scm004 as the branch name and add a comment:

New branch

Check out the same DokanNet\Properties\DokanNet.cs file by adding new lines also at line 117.

Navigate to the Pending changes view and check what you've modified:

Pending Changes View

Don't forget to comment (for example, Adding new lines on DokanNet.cs file) and Checkin the file.

Navigate to the Branch Explorer to see the current state of the workspace:

Branch Explorer

Return to the main branch by right-clicking the main branch and selecting Switch workspace to this branch. The current state of the repository looks like this:

Main Branch

Remember that you modified exactly the same section of code in the same file. This action makes the merge much more complicated.

To perform this merge, first, you'll merge from the scm003 branch to the main branch. Then, you'll merge from the scm004 branch to the main branch.

Start by going to the Branch Explorer. Then, Right-clicking on the scm003 branch and click Merge from this branch.

The Merge from branch view looks like this:

Process all merges

Currently, there changes are only in the source contributor. Click Process all merges and the merge will run automatically.

Navigate to the Branch Explorer to check the current state of the workspace:

Switch workspace

There is a new pending merge link so go to the Pending changes view. Don't forget to write a comment (for example, Merging from scm003 to main) before running Checkin:

Pending changes

Navigate to the Branch Explorer to see the current state of the workspace:

Branch Explorer

The scm003 branch is merged.

Complete the same steps to merge the scm004 branch.

  • In the Branch Explorer, right-click the scm004 branch and select Merge from this branch.
  • In the Merge from branch, click Process all merges.

Mergetool window:

Mergetool

You can learn more about how the merge works by referring to these four important terms:

  • Source (src) - Shows the revision you are merging from.
  • Base - The initial revision.
  • Destination (dst) - Shows what you have right now on your workspace.
  • Result - Displays how the revision on your workspace will be once you finish the merge.

Each one of them has a different color to help you better understand the merge process.

You can see the code added in the scm003 branch (source), and the scm004 branch (destination). At the bottom, you will see the final result with both contributors.

If you agree with the Destination, click Deselect Source:

Merge tool: destination, source...

Once you've reviewed the file, click the Save and Exit button at the top of the toolbar.

Navigate to the Branch Explorer to see the current state of the workspace:

Branch Explorer: pending merge

In the Pending changes view, you can check the file you've modified. Remember to add a comment before youCheckin:

Pending changes

You can compare the two merges you have performed:

  • If only one contributor changed the code, it's an automatic conflict.
  • If both contributors changed the code, the merge tool will ask you which file to keep.

3-way merge vs 2-way merge

The last scenario followed a 3-way merge. This involved modifying the same file in the same place in two different branches. The resulting file is the one created after the changes are combined, and you decided which would be the final code.

A 2-way merge is more straightforward because it doesn't consider the base file (common ancestor) to calculate the merge.

Navigate back to the DokanNet\DokanOperations.cs file and make a couple of simple changes. Then merge the code with the 2-way merge tool. Check out the results in the figure below:

2-way Merge

  • The 2-way merge doesn't know whether you added the line or removed it, so it cannot automatically decide on how to solve this conflict.
  • A 3-way merge tool however would automatically solve the conflict because it knows what the original file was based on (the base file). That is why Plastic SCM only uses the 3-way merge tool.

Learn more about merge by reading the following documentation:


Last updated

May 18, 2018
  • We made a significant change: "Items view" is gone and now we call it "Workspace Explorer". Hope this won't annoy old users, but we think "items view" is too abstract for many newcomers.
  • Jun 01, 2016
  • Now you can read the updated Step-by-step tutorial.