I get the following message:
"Password Required
For user LaPlume on host bitbucket.org"
Please check if the ssh-agent has your keys loaded. If not, please add them to the agent.
Run below commands in terminal to do so,
To check if keys are loaded:
ssh-add -l
To add keys to agent:
ssh-add <path_to_key>
more like,
ssh-add ~/.ssh/id_rsa
Key in the passphrase used while generating the ssh key and you should be good to go.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried to check if keys are loaded and the response was that
"The agent has no identities." How do I solve the problem?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Locate your ssh key on the disk. If you have used the default location, it should be located at ~/.ssh/ Use the file name for the key and add it to the ssh-agent with below command,
ssh-add ~/.ssh/<ssh_key_file_name>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The name of the file of the public key is id_rsa.pub but I get a syntax error with the following code:
ssh-add ~/.ssh/<id_rsa.pub>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should do this,
ssh-add ~/.ssh/id_rsa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The command worked. It stated: "identity added".
What else do I do?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Assuming that you have added the key on Bitbucket, you should now be able to push to Bitbucket from Sourcetree without a password prompt.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you please attach a screenshot of the account setup and the password prompt window?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For some reason, my MacOS Sierra 10.13.3 won't take screenshots.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.