I'm currently working in a branch I created using the Team-->Branch. How do I use Team-->Merge to merge my changes to the branch back to head?
|
feedback
|
|
Ensure that the destination is loaded into your workspace. This is the most important part and the part I missed when trying to do it a couple of times. For example, if you wish to merge your changes into HEAD, make sure the project is shared with HEAD in your workspace(not the branch you have been working on). To do this, select the project and choose From this point, choose | |||
|
feedback
|
|
I was having trouble with this too. Here are the steps I take to merge (mostly taken from the online Eclipse help):
You are now ready to begin the actual Merging process. Here you will be picking which changes should come over and which should be discarded. Think of this process as a semi-automated development cycle, effectively a checkout, make changes, commit cycle. Only instead of manually inserting your changes you have compare tools to assist you along. After all you've already made all the code changes in your branch! To Merge:
Hope that helped. Provided below for reference is the contents of the help document that guided me to victory! | |||
|
feedback
|
|
I struggled with this also and the above answer was not helpful until I checked the "Perform the merge into local workspace" radio button. Unfortunately, I was not able to preview my merge before the two files were merged. | |||
|
feedback
|
|
I just had to do this. While the answers above were similar, I found they weren't specific to what I needed to do.
When you preview the changes they will appear in the normal CVS synchronise view. When you merge the files, they will be brought into your local workspace (which from earlier is your destination branch) as changes. At this point you will need to check them into CVS. | ||||
|
feedback
|
|
I agree this is working other way around, if changes in YOUR_BRANCH needs to be updated to HEAD, 1) commit changes to YOUR_BRANCH 2) swap local branch to HEAD 3) merge HEAD witch changes made in YOUR_BRANCH therefore you need to be in HEAD and "take" changes from YOUR_BRANCH (instead of sending changes from YOUR_BRANCH to HEAD). | |||
|
feedback
|
|
Frankly, there is no easy, clean way unless you have been anticipating and planning for this merge right from the time you branched. However, I found a hack that works perfectly, which I've described in a blog post. | ||||
|
feedback
|