bitbucketではhttpsを使ってcloneやpushをおこなうのがメインのようですが、
sshのキーを登録して、cloneをおこなうことができます。
ssh-keygen -t rsa
で生成された公開鍵を登録するだけでOKです。
で、cloneは
git clone git@bitbucket.org:{account_name}/{project_name}.git
でできますが、pushはできません。
pushする場合は
git remote add pushurl https://{account_name}@bitbucket.org/{account_name}/{project_name}.git git push pushurl master
とかで回避してください。