我可以在推送远程 hg 存储库后强制执行 hg 更新吗?

发布于 2024-10-04 20:50:43 字数 182 浏览 2 评论 0原文

我正在笔记本电脑上的 Mercurial 存储库中编写代码,然后通过 hg Push 将其推送到服务器,然后在服务器上运行 hg update ,然后运行我在服务器上新编写的代码。在我从笔记本电脑推送到服务器上的存储库后,有什么方法可以强制服务器上的存储库自动更新到最新版本,以便我可以保存该步骤?

I am writing code in a mercurial repository on my laptop, which I then push to a server via hg push, and then on the server, I run hg update and then run my newly-written code on the server. Is there any way to force the repo on the server to be automatically updated to the latest revision after I push to it from my laptop, so I can save the step?

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

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

发布评论

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

评论(1

永言不败 2024-10-11 20:50:43

请查看 HG 常见问题解答中的以下条目: 有什么方法可以在远程服务器上进行“hg 推送”并自动进行“hg 更新”吗?

根据常见问题解答,您可以使用挂钩在推送后自动调用“hg update”,

[hooks]
changegroup = hg update >&2

这位于远程存储库上的 .hg/hgrc 中。输出必须重定向到 stderr(或 /dev/null),因为 stdout 用于数据流。

Look at the following entry on HG faq : Any way to 'hg push' and have an automatic 'hg update' on the remote server?.

As per the Faq, you can use the hooks to automatically call "hg update" after a push

[hooks]
changegroup = hg update >&2

This goes in .hg/hgrc on the remote repository. Output has to be redirected to stderr (or /dev/null), because stdout is used for the data stream.

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