Mercurial 中具有多个远程位置的推拉
(我是 Mercurial 和版本控制方面的新手。)
我正在使用 bitbucket(mercurial) 的开源框架克隆。每当该框架更新时,我都会运行 hg pull 和 hg update 来获取最新的副本。现在,我出于自己的目的对该框架进行了一些修改,并将其存储在 bitbucket 上的另一个存储库中。现在,如果原始框架已更新,我如何将更改合并到我自己的存储库中,保持我自己的更改完好无损。
(I am newbie in mercurial. and version control. )
I am using an opensource framework clone from bitbucket(mercurial). whenever that framework is updated I run hg pull and hg update to get recent copy. now I did some modification to that framework for my own purpose, which I store at another repository on bitbucket. Now If original framework is updated, how do I merge that changes in to my own repository keeping my own change intact.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,这是这个的工作流程。
首先,您从 bitbucket 上要修改的第三方项目进行克隆,这样您就可以在本地克隆中获得以下历史记录:
然后您可以在您的 bitbucket 帐户上创建一个新项目,并推送到该存储库,所以现在您拥有:
这里的“fork”仅仅意味着bitbuck上的公共克隆。
然后你对你的克隆进行一些更改,并推送到你自己的 bb 存储库,现在你有:
然后在某个时候,第三方更新他们的存储库,所以现在你有:
修订号后面的 ' 只是意味着这些数字是相同,但变更集内容不同。
此时,您将 3rd 方更改拉入您自己的克隆中:
然后您在克隆中执行合并,并且还实现了一些新更改:
并推送到您的 bb 存储库:
同样,在某个时刻,第三方开发人员更新他们的仓库:
所以你重复这个过程,首先拉:
你合并:
然后推:
Well, here's the workflow for this.
First you clone from the third party project on bitbucket, that you want to modify, so you get the following history in your local clone:
Then you create a new project on your bitbucket account, and push to that repo, so now you have:
"fork" here simply means public clone on bitbucket.
Then you make some changes to your clone, and push to your own bb repository, now you have:
Then at some point, the third party updates their repository, so now you have:
The ' behind the revision numbers just mean that the numbers are the same, but the changeset contents are not.
At this point, you pull the 3rd party changes down into your own clone:
Then you perform a merge in your clone, and you also implement a few new changes:
and push to your bb repository:
Again, at some point, the third party developer updates their repo:
So you repeat the process, first pull:
You merge:
And push: