populate Changes in model when committing from command line

0
Hi. "Merge changes here" -> "Port fix" is inconvenient because to find the needed revision you sometimes have to scroll multiple pages to find it. There's no text input to just paste the revision id. I prefer setting up a merge driver and doing cherry-pick from command line: $ echo '*.mpr merge=studiopro2' >>.git/info/attributes $ git config merge.studiopro2.driver '"/C/Program Files/Mendix/10.12.10.51938/modeler/mx.exe" merge %O %A %B' $ git cherry-pick --no-commit commit1 Checking MPR Versions. Complete. Converting MPRs Complete. Merging MPRs. Complete. Merge successful. Auto-merging MyProject.mpr $ rm -rf .mendix-cache/ As you can see, there's "--no-commit" argument. After this I open Studio and commit there. If I don't, then "Changes in model" will be empty in the history view despite the use of the custom merge driver mx.exe. The other problem is that the original committer name is lost when doing "Port fix" in Studio or finishing a cherry-pick there. Is there some trick to make Studio populate the "Changes in model" for an already existing commit?  
asked
0 answers