- Using Version Control in Studio Pro
How to work with version control and how to resolve some issues which may arise
If you would like to upgrade to a newer long-term support version of Studio Pro, see Moving from Mendix Studio Pro 8 to 9.
Version Control allows you to manage your app development in two ways:
Version control in Mendix is built on top of Apache Subversion and the concepts will be familiar to Subversion users. Mendix simplifies Subversion commands by building them into Studio Pro and the Mendix Portal.
Team Server is where all the committed versions of Mendix apps are stored. If you commit a revision of an app, it is stored on the Team Server.
To commit to the Team Server you will need to have a role in the project which allows you to edit the app.
Within the Team Server each app is stored in a repository. This repository contains all the committed revisions for the Branches of the app.
A revision is the version of your app at a moment in time, stored on the Team Server.
Each revision of your app is given a unique number to identify it and enable you to find it in future. A new revision is created from Studio Pro when the app is committed to the repository.
A working copy is the version of your app which is currently being worked on in Studio Pro. For Studio Pro, there is one working copy for each development line of the app. This model is held locally, on each computer where development work is taking place.
Merging is the action of taking one revision of an app and applying the differences which have been made in a different revision. See the Merging Branches section for more information.
If any of the differences cannot be applied, then there is a conflict.
A conflict occurs when two versions of the app cannot be combined automatically. This happens when the same document has been changed in a Studio Pro working copy and a committed revision and these changes cannot be reconciled. These are some examples:
When a conflict occurs, a developer has to intervene to decide how it should be resolved before it can be committed to the Team Server as a new revision.
Updating is the action, invoked in Studio Pro, which gets the latest revision of the current development line from the Team Server repository and merges the differences into the current working copy.
Committing is the action, invoked in Studio Pro, of sending all your changes to the repository and making a new revision.
If there are not conflicts, the changes are then sent to the repository to make a new revision.
Development of an app is done in a Development Line where a set of related changes is made. There are two types of development line: the main line and branch lines.
The main line is the initial development line for the app and is usually kept as the version which will be deployed to the production environment. Simple apps, and apps which do not require a high degree of collaboration, may only have a main line.
A Branch Line is a way of making an independent set of changes which can be tested away from the main line.
See Branches, below, for more information on how branch lines can be used.
A Tag is a way of identifying a commit in addition to the revision number. It is specified by the developer and has four parts:
The Repository Service manages communication between Studio Pro and other supporting services (for example, Team Server). The developer will not generally be aware that they are communicating via the Repository Service.
With more complex apps, you may want to manage your code in a more sophisticated way. For example, you may want to develop new features separately from the currently deployed version of your app so that you can fix any bugs without having to release all the new features.
This is done using Branch Lines.
All apps are developed along the main line (also referred to as trunk). Here you have all development happening along a single line, with all changes built upon the previous revision:
When you add a branch line, you take a copy of an existing revision and work separately on that copy. Changes made to one branch do not impact any other branches.
In Mendix each revision within a repository is given a unique version number. This means that version numbers given to revisions along any chosen branch line may not be consecutive.
You may have a branch line which will continue independently and never need to be combined with any other development lines. For example, you may create a branch for a particular release of your app and only ever use it to fix bugs in that release.
On the other hand, you may want to add the features from one branch line into another development line. These are two cases for doing this:
You can merge a specific revision of a branch line into your current working copy. If, for example, you were working on the main line updated to revision 6, you can merge revision 5 from another branch line into your working copy. Then you can commit the result to create revision 7. If you want to merge several different committed changes from a branch, you will need to select a range of revisions which includes all the changes.
There may be conflicts during the merge, and these will have to be resolved before you can commit the changes to your app.
Note that errors can be introduced by the merge process even if no conflicts are identified during the merge. Errors are inconsistencies which are flagged in Studio Pro and will prevent the app from being deployed. They could lead to a revision not being deployable, so it is important to check for errors after you have done a merge.
How to work with version control and how to resolve some issues which may arise