Reputation: 15070
I'm working on a "branch" in Eclipse .
Some changes were commited on the "HEAD" branch.
How can I easily update my branch so that it can be synchronized with the HEAD ?
Thank you
PS:
What I did, but I'm not sure it's the best method, is :
Is there a cleaner way to do it ?
Thank you.
Upvotes: 4
Views: 3168
Reputation: 81
The best way to do it is to right click on the project in the branch and select Team->Merge. Merge the changes done in HEAD with the branch using the Tagging concept.
Upvotes: 8