当我已经使用了 hg clone 时,如何更改 Mercurial?
在工作中处理我的存储库,hg 推动了更改。现在,在我的家用计算机中,考虑到我已经在大约两周前克隆了该存储库,但此后一直没有更新,我如何获取从工作中保存的更改?
我需要诸如 hg getchanges 之类的东西吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
hg pull
后跟hg update
应该可以解决问题。hg pull
followed byhg update
should do the trick.默认路径是存储库中 .hg/hgrc 的路径部分中的 'default' 键;有关更多信息,请参阅
hg 帮助路径
。授权信息(推送到 bitbucket 所需的)要么存储在该 URL (http://user:pass@...) 中,要么存储在 auth .hg/hgrc 或 ~/.hgrc 部分。The default path is the 'default' key in the paths section of .hg/hgrc in your repo; see
hg help paths
for more. Authorization info (required to push to bitbucket) is either stored in that URL (http://user:pass@...) or the auth section of .hg/hgrc or ~/.hgrc.