In our workflow we are using Mercurial mq
for our development the default
branch. However, when we need to merge another branch into the default
, what is the best practice to apply these patches on top of the merged default
?
Obvious (ugly) way: pop all patches, merge branch then push all patches and fix all the .rej
files...
Correct way should be to use rebase
somehow but not sure what's the correct workflow.
Any ideas?