I'm doing release management, and I periodically need to merge from our
STABLE branch onto our DEVELOPMENT branch (HEAD).
MP01 MP02 MP03
--------+---------+--------+| STABLE
| | | |
| V V V
----+------------------------------------- DEVELOPMENT (HEAD)
BP (branch point)
When using the command-line, I would use the following commands in a
checked-out mainline repository:
cvs update -d -j BP -j MP01 *
cvs update -d -j MP01 -j MP02 *
cvs update -d -j MP03 -j MP03 *
How can I accomplish the same thing with eclipse while taking advantage of
eclipse's 3-way merge tool? To do this, I would need to be able to set:
- a common ancestor
- a beginning tag
- an ending tag
But so far I haven't found a way to do so using eclipse's Merge Wizard. Any
suggestions would be greatly appreciated.
Thank you,
Michael Burton