* When prompted with the merge conflict, open kdiff3 to check the affected files
If then there is a rebase done on develop:
```bash
$ git rebase develop
```
A conflict should emerge
* Selecting A will keep the changes of the target branch, while B will keep your changes. Selecting A and B will combine both changes to the merged file.
* When facing the merge conflict message, use the command
```bash
$ git mergetool
```
* This opens kdiff3 if it was properly set up. Selecting A will keep the changes of the target branch,
while B will keep your changes. Selecting A and B will combine both changes to the merged file.
* We are only interested in your changes, so select B and save