当我已经使用了 hg clone 时,如何更改 Mercurial?

发布于 2024-09-28 23:25:35 字数 246 浏览 1 评论 0 原文

在工作中处理我的存储库,hg 推动了更改。现在,在我的家用计算机中,考虑到我已经在大约两周前克隆了该存储库,但此后一直没有更新,我如何获取从工作中保存的更改?

我需要诸如 hg getchanges 之类的东西吗?

http://bitbucket.org/sergiotapia/sharpdic

Worked on my repo from work, and hg pushed the changes. Now in my home computer, how do I get the changes I saved from work considering I've already hg cloned the repo about two weeks ago but haven't updated since?

I need something like a hg getchanges or something?

http://bitbucket.org/sergiotapia/sharpdic

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱*していゐ 2024-10-05 23:25:35

hg pull 后跟 hg update 应该可以解决问题。

hg pull followed by hg update should do the trick.

坚持沉默 2024-10-05 23:25:35
$ hg pull     # copy changesets from remote default path to local repo
$ hg update   # update working directory

$ hg pull -u  # above two commands in one step

默认路径是存储库中 .hg/hgrc 的路径部分中的 'default' 键;有关更多信息,请参阅 hg 帮助路径。授权信息(推送到 bitbucket 所需的)要么存储在该 URL (http://user:pass@...) 中,要么存储在 auth .hg/hgrc 或 ~/.hgrc 部分。

$ hg pull     # copy changesets from remote default path to local repo
$ hg update   # update working directory

$ hg pull -u  # above two commands in one step

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文