开发者

Mercurial - basic process to revert a merge and try again

开发者 https://www.devze.com 2023-02-18 14:56 出处:网络
We merge using this process: cd c:\\myapp hg pull ssh://hg/myapp-1_0_1 hg merge Now sometimes we mess up the merge or sometimes we get an error (ie: \"can\'t merge file xxx - file in use\").Usuall

We merge using this process:

cd c:\myapp
hg pull ssh://hg/myapp-1_0_1
hg merge 

Now sometimes we mess up the merge or sometimes we get an error (ie: "can't merge file xxx - file in use"). Usually I just delete my c:\myapp repo, re-clone from the remote master repo and start over. This works but it's a pain. What is a better way?

I've read about using hg update -C but I'm not clear on the process. So you'd do hg update -C, this would delete the merged files but keep the changesets that were pulled down, and then you'd issue the hg merge command again and try again?


Update开发者_运维知识库 Regarding the related question: hg update -C still keeps the changesets in the repo which were pulled down with hg pull - how can you get rid of those?


hg update -C is just perfect. Why would you want to get rid of the pulled changesets? Because the update command updates to the head of the pulled changes? If this is your problem with the pulled changes, run hg update -C <revision-of-your-local-head> and don't care about the pulled changes, probably you'll pull them again at some point anyway. After the update proceed your work or try the merge again.

However, if your really want to get rid of pulled changes, use the strip command.


See this post How to abandon a hg merge?

0

精彩评论

暂无评论...
验证码 换一张
取 消