Reputation: 2687
We currently have a release
branch (from master
) on which we are developing features and bugfixes. We've discovered that we need to release some of these fixes early and so need to extract them from the release
branch and drop them onto master
.
What's the easiest way of getting from
A--B--C master
\
D--E--F--G--H--I--J--K release
to
A--B--C--F--G--J master
\
D--E--F--G--H--I--J--K release
?
I could cherry-pick
the merge commits from release
onto master
but will that cause headaches when release
is eventually merged into master
?
Upvotes: 0
Views: 166
Reputation: 2989
I would:
hotfix
from current state of master. That would point to Chotfix
.hotfix
to master
Upvotes: 1