Suppose I have several tasks and every one is developed in a branch. I have three branchs too: develop, qa, production. Usually I merge every ticket into develop when is ready.
How can I merge into qa and production only the tasks I need from the branch develop?
Example:
I have task1, task2, task3, I merge to develop the task1, then the task2, then the task3. I delete the 3 tasks branchs. Now I need to merge the commits of task1 into qa. How can I do that?
In the future, I would not delete the task branches if you wish to merge them into QA as well (though I would recommend a different workflow altogether, like Git flow). If you have indeed already deleted the task branches, you can restore them with the following:
git branch task1 ABC^2
, whereABC
is the commit where you mergedtask1
intodevelop
. Then simply mergetask1
into QA.