authenticated via ssh key.
You can use git to connect to Bitbucket. Shell access is disabled
Hello @German Gonzalez and welcome to the Community!
The message "authenticated via ssh key" just means that Bitbucket Cloud recognizes that SSH key - meaning that key is added somewhere in Bitbucket - but it doesn't necessarily have access to the repository you are trying to access.
If you have multiple keys in your machine, it may be the case that the "wrong" key is being used, so I would suggest that you test the following :
1. List all the keys from your ssh-agent
ssh-add -l
2. Remove any keys from the agent that you don't want to use in Bitbucket
ssh-add -d <path to the ssh key>
3. Add the correct SSH key to the agent
ssh-add <path to the correct SSH key>
After those steps, you can try cloning the repository again and check how it goes.
Hope that helps! Should you have any questions, feel free to ask.
Thank you, @German Gonzalez !
Patrik S
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.