我可以在推送远程 hg 存储库后强制执行 hg 更新吗?
我正在笔记本电脑上的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请查看 HG 常见问题解答中的以下条目: 有什么方法可以在远程服务器上进行“hg 推送”并自动进行“hg 更新”吗?。
根据常见问题解答,您可以使用挂钩在推送后自动调用“hg update”,
这位于远程存储库上的 .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
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.