My steps to generate and use the SSH key in Bitbucket:
ssh-keygen -t rsa -C "my email"
cat ~/.ssh/id_rsa.pub
- copy my key
ssh-rsa AAAAB3Nz... my email
to clipboard - in bitbucket access my configuration > SSH keys
- add the key
- in console of my ubuntu, I use the command:
ssh -T git@bitbucket.org
After using the command from step 6, the following message appears:
$ ssh -T git@bitbucket.org
logged in as ricardoramos.
You can use git or hg to connect to Bitbucket. Shell access is disabled.
When I make a push to my repository, still continues requiring my password.
It is very annoying to have to keep typing the password for every push.
Where am I wrong?