对于推送操作中的 hg 超时是否有任何解决方法?
我正在尝试推送到 bitbucket,这是一个包含数千个已更改文件的变更集(我正在提交 巨大的库依赖)。我的本地盒子上的提交工作得很好,但是当我尝试进行实际推送时,操作超时(hg
说“搜索更改”一段时间,然后整个事情就崩溃了) 。
显然,我完全无法控制服务器端。
在这样的情况下我能做些什么吗?
I'm trying to push to bitbucket, a changeset with several thousand files which were changed (I'm committing a huge library dependency). The commit on my local box worked just fine, but when I try to do the actual push, the operation times out (hg
says "searching for changes" for a while, then the whole thing just collapses).
Obviously, I have absolutely no control over the server side.
Anything I can do in a scenario like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg moving
说什么?您也可以尝试部分推送hg push -rchangeset_no
,其中changeset_no
是需要推送的所有变更集中间的任何变更集。What does
hg outgoing
say? Also you could try to push partiallyhg push -r changeset_no
, wherechangeset_no
is any changeset from the middle of the all changesets need to be pushed.