My git flow looks like the following:
x - x (feature/branch-a)
/
(master) x- x (develop)
\
x - x (feature/branch-b)
There is currently a commit and PR for branch-a
to develop
. I'll be waiting a bit before branch-a
PR is accepted but branch-b
reuses quite a bit of logic from branch-a
that I need.
Before I start copying code from branch-a
to branch-b
, is there a better way to merge this code without creating a feature branch-b
off branch-a
.