문제

How to pull changes from one branch to other in MercurialEclipse plugin? I can't find any info. Also I saw few options: rebase and merge, but I'm afraid to use them, because I work on commercial project.

도움이 되었습니까?

해결책

This is not really a MercurialEclipse question - an answer for plain mercurial would be valid too. The short answer is to use merge. Merge will apply all changes that were made on the other branch to the current branch since the last merge (or since the branch point if there had never been a merge before).

Rebase removes the source changesets so usually isn't appropriate for applying changes from one named branch to another.

A 3rd option is to use transplant. This lets you chose specific changesets to apply onto the current branch.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top