我怎样才能从“主人”那里得到改变?谷歌代码上托管的项目的 Mercurial 存储库?
我从 code.google.com 上托管的项目创建了一个“服务器”克隆。我从我的机器中的该存储库创建一个克隆并推送一些更改;一切顺利。
现在主存储库有一些更改,我想拉取它们。如何使用这些更改更新我的“服务器”克隆?
I create a "server" clone from a project hosted at code.google.com. I create a clone from that repository in my machine and push some changes; everything goes well.
Now the master repository has some changes and I want to pull them. How do I get my "server" clone updated with those changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-u 表示自动更新您的工作副本。您可以在
.hg/hgrc
文件中设置(如果尚不存在)默认 URL:然后,您可以这样做:
当然,您仍然可以手动指定不同的位置。
The -u means automatically update your working copy. You can set (if it's not already there) a default URL in the
.hg/hgrc
file:Then, you can just do:
Of course, you can still specify a different location manually.