Merging and Diffing Commands
Introduction
The commands in this group enable comparing two apps and merging them.
mx diff Command
The mx diff
command performs a diff of two .mpr files and outputs the differences to a file in JSON format.
Usage
Use the following command pattern for mx diff
:
mx diff [options] BASE MINE OUTPUT
These are the OPTIONS
:
Option | Shortcut | Result |
---|---|---|
--help |
Shows help for the mx diff command and exits. |
|
--loose-version-check |
-l |
Makes the version check loose (meaning, it auto-converts if possible before diffing). |
BASE
is the first .mpr file, which is used as a base in comparison.
MINE
is the second .mpr file, which is used as the changed version in comparison. The output will contain the changes that are in this file against the base.
BASE
.mpr has Microflow1 and the MINE
.mpr does not have it, Microflow1 will be listed as deleted in the output file. If you swap the BASE
and MINE
parameters and compare again, Microflow1 will be listed as added.
OUTPUT
is the name of the outputted JSON file.
Examples
This is an example:
mx diff C:\MyApp\MyApp.mpr C:\MyApp-main\MyApp.mpr c:\comparison\output.json
Return Codes
This table shows the return codes and their description:
Return Code | Meaning |
---|---|
0 |
OK. |
2 |
Conflicts were found during the diff. |
3 |
An error happened during the merge. |
4 |
The version of either .mpr file is not supported. |
mx merge Command
The mx merge
command performs a three-way merge of two .mpr files that have a common base commit.
The input is three .mpr files: BASE
, MINE
, and THEIRS
.
Usage
Use the following command pattern for mx merge
:
mx merge [OPTIONS] BASE MINE THEIRS
These are the OPTIONS
:
Option | Result |
---|---|
--help |
Shows help for the mx merge command and exits. |
BASE
is common base version of the app. If the app is version-controlled, this is the last common revision of the app (the revision that is present in the history of both branches).
MINE
is the version to merge into. This .mpr contains the results of the merge.
THEIRS
is the version to merge changes from.
The image below illustrates the meaning of the parameters:
In the diagram, note the following:
- A" is
MINE
, which is the current commit you want to merge the changes to - B’ is
THEIRS
, which is the last commit on a branch you want to merge changes from - A is
BASE
, which is the common commit where the branches diverged
In order to merge changes correctly, Studio Pro has to compare both A" and B’ against A to see what has been changed on each branch. During the merge, the merge algorithm will try to automatically merge the changes.
This command works for any three .mpr files. This means you can try to merge different apps at your own risk.
Conflicts
If there are conflicts during the merge, resolve them by opening the app in Studio Pro and selecting Version Control > Merge Changes Here.
The reason for this is that conflict resolution is a complex process that has two requirements:
- The app has to be version-controlled
- Your Git repository has to be in the merge state (Studio Pro does this when you click Merge Changes Here)
This merge state is needed for Studio Pro to know what your current branch is and which branch you are trying to merge into it. This way, when you are trying to resolve the conflict using the THEIRS
document, Studio Pro can download the document from the branch and put it into your current app.
So, if you run this command from the command line specifying the three .mpr files but the result has conflicts, you will not be able to resolve the conflicts in the MINE
app using the THEIRS
documents by just opening the app in Studio Pro. Instead, you need to configure Git to use mx merge
as a merge driver for the .mpr files and trigger the merge from the Git command line (so the repository is put in the merge state for Studio Pro to be able to pick it up after the command is complete).
Examples
Here is an example:
mx merge C:\MyApp\MyApp.mpr C:\MyApp-main\MyApp.mpr C:\MyApp-FeatureBranch\MyApp.mpr
Return Codes
This table shows the return codes and their description:
Return Code | Description |
---|---|
0 |
The merge is successful and there are no conflicts. MINE.mpr contains the result of the merge. |
1 |
The command is invalid for the input parameters. |
2 |
Conflicts are detected. Open MINE.mpr in Studio Pro to resolve them. |
3 |
There is an exception, as an error occurred during the merge. Error details are printed to the command line output. |
4 |
The version is unsupported. |
mx merge as Git Merge Driver
This section describes the configuration you need to do in order to enable using the mx merge command as a merge driver in Git. With this configuration, you can merge one branch into another using third-party version control tools and the Git command line.
Normally, when you are merging branches with Git, it compares the changes in files in both branches. If a certain file has been changed in both branches, this is called a conflict. If the files in conflict are text files, Git attempts to resolve it automatically (and very often succeeds).
However, if the files in conflict are Mendix apps the conflict is in two .mpr files, both the files and the conflict are more complex, which is why we need Studio Pro to resolve the conflicts. For such cases, Git has an option to delegate conflict resolution for a certain file type to an external tool. The mx merge
command is compatible with this mechanism and allows Git to try to merge the .mpr files as if Studio Pro did it. Then, if there are still conflicts, you can open Studio Pro and resolve those manually.
config File
Add the lines below to the config file located in the .git folder of your app on disk.
At the end of the file, add a [merge "custom"]
block like this:
[merge "custom"]
name = custom merge driver for MPR files
driver = [MX.EXE_PATH] merge %O %A %B
Replace [MX.EXE_PATH]
with a full path to your mx.exe file in the Unix format (for example, '/c/Program Files/Mendix/10.0.0.8753/modeler/mx.exe'
).
Under the [core]
section, add the following:
attributesfile = .git/.gitattributes
.gitattributes File
Create .gitattributes
file in .git folder of your app on disk. Add the following line to tell git to use [merge "custom"]
driver from .gitconfig chapter of this page for merging *.mpr files.
*.mpr merge=custom
Verification
To confirm this works, use Studio Pro to create a blank version-controlled app and do the following:
- Create a branch called branch and download it.
- Change the caption of a home page to Branch.
- Add a microflow named branch.
- Commit and push your changes.
- Switch back to the Main branch.
- Change the caption of the home page to Main.
- Add a microflow named main.
- Commit and push your changes.
- Open the Git command line in your app’s Main branch directory and run
git merge origin/branch
.
If you configured everything correctly, the command line output should look like this:
$ git merge origin/branch
Checking MPR Versions.
Complete.
Converting MPRs
Complete.
Merging MPRs.
Conflicts found during merging. Please resolve them by opening the project in Studio Pro.
Complete.
Auto-merging MyBlankApp.mpr
CONFLICT (content): Merge conflict in MyBlankApp.mpr
Automatic merge failed; fix conflicts and then commit the result.
Now, if you open you app on the Main branch, you should see the following:
- Both the branch and main microflows (this is a non-conflicting change, so
mx merge
sorted this out automatically, just like Studio Pro would do) - A conflict on the Home_Web page concerning the renaming of home page caption (this is a conflicting change, as you changed the same caption to different values on both branches, so you can resolve this manually)
$git merge --abort
and close the Git command line tool before making changes to the configuration. Changes made to the configuration config and .gitattributes files are picked up by reopening the Git command line tool.