I used git flow for a while. I am curious about a specific use case.
For one of my projects, I have a ticket for a new website feature. This ticket depends on many sub-tasks. I would like to create a function branch for the main ticket, and then for each subtask create a function branch of the parent function branch.
Suppose I have a PROJ-500 ticket and I create a feature branch for it
git flow feature start PROJ-500
Then I want to integrate PROJ-501 tickets through PROJ-515 into PROJ-500 , before integrating all this into develop . Is there a way to do something like
git flow feature start PROJ-511 -b PROJ-500
Then overtime, these subtasks are completed, and when their function is completed, the branch is combined in the PROJ-500 .
git flow feature finish PROJ-511
The above command will integrate the PROJ-511 into the PROJ-500
And once all the subtasks are completed, the PROJ-500 will be completed and combined with develop .
Thus, the new function of the website is integrated into the development as a whole, and not in parts.
git git-flow
pymarco Apr 08 '14 at 21:41 2014-04-08 21:41
source share