I did the cherry picks so that I picked up the merge request commits with commands like this:
git cherry-pick -m 1 <merge request commit hash 1>
git cherry-pick -m 1 <merge request commit hash 2>
...
git cherry-pick -m 1 <merge request commit hash N>
The -m 1
parameter…
Top comments (0)