I currently have an old SSH key uploaded on a server. The problem is I lost my ~/.ssh directory (with the original id_rsa and id_rsa.pub files). Consequently, I want...
I have cloned my git repository over ssh. So, each time I communicate with the origin master by pushing or pulling, I have to reenter my password. How can...
Configuring a new Digital Ocean droplet with SSH keys. When I run ssh-copy-id this is what I get: ssh-copy-id user@012.345.67.89 /usr/bin/ssh-copy-id: INFO: attempting to log in with the new...
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 git@github.com:accountname Repos accessible from...
After successfully cloning my repo from heroku and added another remote 1/ git clone git@heroku.com:[APP].git 2/ git remote add bitbucket ssh://git@bitbucket.org/[ACCOUNT]/[REPO].git 3/ git push bitbucket master I am still...
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....
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 git@github.com Hi User! You've successfully authenticated, but GitHub...
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...
I think I forgot the passphrase for my SSH key, but I have a hunch what it might be. How do I check if I’m right? 6 Answers 6
I have an app that executes various fun stuff with Git (like running git clone & git push) and I’m trying to docker-ize it. I’m running into an issue...