Reputation: 12662
For a new project :
In Repository Explorer, I fill the URL and "push outgoing changesets". No login and pwd asked? I get this error error SSH-2.0-OpenSSH_5.3
Previously I cloned a HG project on bitbucket.org with no problem. Is there any conflict with the previous repo? Where should I input the login and password? I changed in the Global Settings > Proxy
Host : https://bitbucket.org/$myaccount
user :
password :
Should I use a proxy ? Still something wrong with error SSH-2.0-OpenSSH_5.3
Upvotes: 1
Views: 659
Reputation: 12662
Eureka, I found it.
I filled something in Global Settings > Proxy so that I won't need to re-authenticate each time.
This was the cause of the infamous error SSH-2.0-OpenSSH_5.3 . That was stupid I know.
What I should have done is :
First uncheck the proxy settings.
Second I'm too lazy to input my authentication , I should configure paths (Hg Repository Explorer > Synchronize > Configure paths) to save the URL . But still now I don't know how to save my login and pwd . But NOW it WORKS
Upvotes: 0
Reputation: 78330
That error is telling you that the path you're trying to push to on bitbitbucket doesn't match the repository you created there. Perhaps you've got a typo in your username or your project (case matters for both). The easiest way to get that URL is to copy it right off of the bitbucket page for that repo.
People's confusion in your wording comes from this statement "I want to push (by cloning) my local repo". Pushing and cloning are separate operations. Cloning creates a new repository and pushing moves changesets between two already existing repositories.
If you do have a repo locally and remotely already then you want to push but not clone, and you need to get the URL right to do it.
Upvotes: 1