SCM Workbench - User Guide

User guide for the Source Control Mangement (SCM) Workbench.

User Guide Sections

Table of Contents

Getting started

  1. Make sure you have all the Optional software you need installed.
  2. Configure the Preferences to you taste. For example which editor to use.
  3. Add projects using the Add Project Wizard
  4. Explore the menus and toolbars to see what you can do.

Workbench Window

Main Window

The SCM Workbench window is split into three main areas. The top area is like a file and folder explorer.

Use the left hand tree control to change between projects and folders and use the right hand list control to work with files. You can change the information shown using the View menu.

The bottom panel is used to show messages. In the example below the result of a git pull.

Use the toolbar to access frequently used commands.

The status bar will show the progress of long running operations like push and checkin commands.

The filename filter is used to focus in on a few files.

Filename filter

Type a part of the name into the text box to show only files that contain what you type in the name.

Click the X icon to clear the filter string and show all files.

SCM Workbench Menus

All of the menu items in SCM Workbench are described below. Click on the menu item to scroll to its description.

The menus and toolbars are changed to reflect the needs of the selected project.

Common menus.

Menu: File

Menu: File » Preferences…

Projects preferences
Project Preferences

Enter the default folder to create new projects under.

Editor preferences
Editor Preferences

Enter the path to the editor program you want to use in the "Editor" text box. The Browse button pops up a file picker dialog to help locate the editor program.

Any command line arguments can be entered in the "Editor Arguments" text box.

Shell preferences
Shell Preferences

Choose the "Terminal Program" you wish to use for the Command Shell command. The available choices depend on your operating system:

The optional "Terminal Init Command" will be run each time a new Command Shell is created. For Unix and macOS the terminal init command it sourced into the shell, which allow environment variables to be set.

Choose the "File Browser Program" you wish to use for the File Browser command. The available choices depend on your operating system:

Commit Log History preferences
Log history Preferences

The "Commit History" and "Log History" commands will use the values you set in this preference panel as the defaults.

Fonts preferences
Fonts Preferences

Choose the fonts that you wish SCM Workbench to use.

The Code Font is used to show differences and commit messages all other text uses the User Interface font.

The Code Font must be a mono-spaced font.

Git preferences
Git Preferences

Choose the "git" program that you wish to use. The Browse button pops up a file picker dialog to help locate the git program.

Hg preferences
Hg Preferences

Choose the "hg" program that you wish to use. The Browse button pops up a file picker dialog to help locate the hg program.

Svn preferences
Svn Preferences

There are no Subversion specific preferences at this time.

Menu: File » View log

All the messages that you see in the main windows are also write to a log file. This menu allows quick access to that log file.

Menu: File » Exit

Quit SCM Workbench. All open SCM Workbench windows will be closed.

Menu: File » Clear log

Clear the log messages windows.

Menu: View

Menu: View » Show Controlled and Changed files

Show Controlled and Changed files that are part of the project in the list panel.

Menu: View » Show Controlled and Not Changed files

Show Controlled and Not Changed files that are part of the project in the list panel.

Menu: View » Show Uncontrolled files

Show Uncontrolled files that are not part of the project in the list panel.

Menu: View » Show Ignored files

Show Ignored files, files that the project normally ignores, in the list panel. Ignored files are configured in the project specific config file: .gitignore, .hgignore and .svn/config.

Menu: View » Unified Diff

Use the textual unified diff format when presenting differences.

Menu: View » Side-by-side Diff

Use the graphical side-by-side diff format when presenting differences.

Note: This presentation is not used when showing the differences for a folder of files, unified diff is used.

Menu: View » Meld Diff

Use the meld program to show differences.

Note: Menu is only shown if the meld program is installed. It is not included with SCM Workbench.

Menu: Folder Actions

Menu:Folder Actions » Command Shell

Start a command shell which has the selected folder as its current working directory.

The Shell Preferences allow you to customise how the Command Shell command works.

Menu: Folder Actions » File Browser

Start a file browser at the selected folder.

The Shell Preferences allow you to customise how the File Browser command works.

Menu: File Actions

Menu: File Actions » Edit

Edit the selected file using the text editor configured in the Editor Preferences.

Menu: File Actions » Open

Open the selected file using the standard operating system method.

For example open for an HTML file will open it in your web browser.

Menu: Project

Menu: Project » Add…

The Add Project wizard guides you through the step necessary to add a project to SCM Workbench.

Add project methods

Choose how you wish to add a project.

Note: The Git and Mercurial options will only appear it SCM WOrkbench found the git and hg commands.

Scan for existing projects
Scan for existing projects

Workbench will start scanning from your home folder ($HOME on macOS and Unix, %USERPROFILE% on Windows) looking for projects.

The list only contains projects that have not been already added to Workbench.

Each entry in the list is the folder on disk prefixed with the type of SCM that supported it.

Once you see the project you want to add highlight it and click Next which will take you to the wizard page to set the project's name. You do not have to wait for the scan to complete.

Browse for an existing project
Browse for an existing project

Enter the path to the project that you wish to add. The Browse button pops up a file picker dialog to help locate the project.

If there is a problem with the path you will see feedback on the wizard page.

Clone Git repository
Clone Git repository
Clone Mercurial (hg) repository
Clone Hg repository
Checkout Subversion (svn) repository
Checkout svn repository

Enter the URL of the Subversion repository. The URL is typically publish by the Subversion repository administrators.

You may be prompted for any username and password required to access the repository.

Create an empty Git repository
Init empty Git repository
Create an empty Mercurial (hg) repository
Init empty Hg repository
Project Folder
Project Folder location

Enter the path where you want Workbench to store the project files. The Browse button pops up a file picker dialog to help choose the location.

Project Name
Name the project

Enter the name that you want Workbench to use for this project.

Click Finish to complete adding the project.

Menu: Project » Settings…

The details of project settings are described in in SCM specific documentation:

Menu: Project » Delete…

Pop up a dialog to confirm the deletion of the selected project.

This does not delete the project files, it only removes the project from SCM workbench.

Menu: Help

Menu: Help » User Guide…

Open this user guide in the systems web browser.

Menu: Help » About…

Pop up a dialog that shows the version of SCM Workbench, Git, Hg, PySVN, PyQt and Python used.

Optional software

SCM Workbench depends on you installing optional software to support some features.

SCM Workbench will search for the optional software when it starts up. If You have install git or hg and SCM Workbench does not find software you can configure the location in the Preferences…

When SCM Workbench starts up it reports the location of the optional software it found.

Starting Scm Workbench
Reading preferences
Hg using program /usr/bin/hg
Git using program /usr/bin/git

More details, like version information, is shown in the Help » About… menu.

Subversion (svn)

Subversion is always supported by the builtin pysvn code.

Git

Git support requires that you install the git command for your operating system.

Mercurial (hg)

Mercurial support that you install the hg command for your operating system.