I have two features I\'m working on
Shared -- Commits -- A -- B -- C Feat1
Shared -- Commits -- D -- E -- F Feat2
The problem is that to test Feat2 I rea
There are basically two options here.
feat2
to combo
.To cherry pick new commits on feat2
to combo
, run the following:
git checkout combo
git cherry-pick
Or alternately, you can merge instead of rebasing. E.g. To create combo:
git checkout -b combo feat1
git merge feat2
Then, to "merge in new changes" from feat2
, just...
git merge feat2
Likewise, to merge in new commits on feat1
:
git merge feat1