'GitLab:Merge Request: If multiple MR into Develop but move only my changes to QA branch
There are multiple Merge requests merged into Develop but I want to MR only my changes from develop branch to the QA branch
/abc/abc.py ---|
/abc/deg.py ---|Changes merged into develop by other developer
/test.py ---|
/tss/tss.py ---|Changes merged into develop by me **( I want only these to move to next branch)**
Solution 1:[1]
Used cherry-pick to resolve the issue by selecting only the changes/commit you want to apply.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Skatox |
