Is there any workaround for hg timing out on a push operation?
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?
What does hg outgoing
say? Also you could try to push partially hg push -r changeset_no
, where changeset_no
is any changeset from the middle of the all changesets need to be pushed.
精彩评论