How to solve “sign_and_send_pubkey: signing failed: agent refused operation”?

Configuring a new Digital Ocean droplet with SSH keys. When I run ssh-copy-id this is what I get: ssh-copy-id [email protected] /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed — if you are prompted now it is to … Read more

Multiple GitHub Accounts & SSH Config

I’m having some trouble getting two different SSH keys/GitHub accounts to play well together. I have the following setup: Repos accessible from one account using [email protected]:accountname Repos accessible from another account using [email protected]:anotheraccount Each account has its own SSH key. Both SSH keys have been added and I have created a config file. I don’t … Read more

Repository access denied. access via a deployment key is read-only

After successfully cloning my repo from heroku and added another remote 1/ git clone [email protected]:[APP].git 2/ git remote add bitbucket ssh://[email protected]/[ACCOUNT]/[REPO].git 3/ git push bitbucket master I am still getting this error after running line (3) or using SourceTree conq: repository access denied. access via a deployment key is read-only. First I don’t understand what … Read more

AWS ssh access ‘Permission denied (publickey)’ issue [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Overflow. Closed 6 years ago. Improve this question How to connect to a AWS instance through ssh? I have: Signed up at AWS; Created a public key … Read more

Push to GitHub without a password using ssh-key

I generated an SSH key pair without a password and added the public key to GitHub. Connection with user@dev:/var/www/project# ssh -T [email protected] Hi User! You’ve successfully authenticated, but GitHub does not provide shell access. was successful and when I rename the key, it fails. But when I want to push my changes, it stills ask … Read more

Git error: “Host Key Verification Failed” when connecting to remote repository

I am trying to connect to a remote Git repository that resides on my web server and clone it to my machine. I am using the following format for my command: git clone ssh://[email protected]/repository.git This has worked fine for most of my team members. Usually after running this command Git will prompt for the user’s … Read more