Is there some sort of trick to cloning a bitbucket project via SSH so you don't have to manually enter a password each time?
I've tried following their docs and I was able to get to the point where running ssh -T git@bitbucket.org reports success.
My Bitbucket project page reports my SSH URL is:
git@bitbucket.org:myaccount/myproject.git
However, when I run:
git init
git remote add origin ssh://git@bitbucket.org:myaccount/myproject.git
git pull origin master
it fails with the error:
conq: invalid repository syntax.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
What am I doing wrong?