I uploaded my ~/.ssh/id_rsa.pub
to Bitbucket\'s SSH keys as explained, but Git still asks me for my password at every operation (such as git pull
).
Its already answered above. I will summarise the steps to check above.
run git remote -v
in project dir. If the output shows remote url starting with https://abc
then you may need username password everytime.
So to change the remote url run git remote set-url origin {ssh remote url address starts with mostly git@bitbucket.org:}
.
Now run git remote -v
to verify the changed remote url.
Refer : https://help.github.com/articles/changing-a-remote-s-url/