使用不同的方法访问一个 Mercurial 存储库
我想通过 ssh 和 https (hgwebdir) 访问相同的(物理上相同的)Mercurial 存储库。 ssh用户和http用户同时推送会出现事务问题吗?
I want to make the same (physically same) Mercurial repository accessible via ssh and https (hgwebdir).
Are there transaction problems when ssh users and http users push at the same time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,Mercurial 是为了处理这个问题而设置的,并且一旦事务开始就会(写入)锁定存储库。第二个用户只需稍等一下即可完成推送。如果仅由其中之一提供服务,则可能会同时发生请求,因此设置两者不会导致任何其他问题。
No, Mercurial is set up to handle this, and will (write) lock the repo once a transaction begins. The second user will just have to wait a little bit before their push goes through. Simultaneous requests can happen if it is served just by one or the other, so setting up both won't cause any additional problems.