Reputation: 106530
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?
Upvotes: 1
Views: 659
Reputation: 254886
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.
Upvotes: 2