About 120,000 results
Open links in new tab
  1. git - How to generate ssh keys (for github) - Stack Overflow

    May 6, 2017 · The command to run is only ssh-keygen -t rsa -C "[email protected]" All the rest beginning with line 2 of your script is the output of ssh-keygen. And replace [email protected] with …

  2. How to add ssh key in git bash? - Stack Overflow

    Nov 27, 2019 · To add key in Gitbash Make sure to use to enable ssh agent first. eval $ (ssh-agent -s) [enter image description here] [1] Now you can add ssh key in git bash using below command. if you …

  3. [email protected]: Permission denied (publickey) - Stack Overflow

    Aug 31, 2019 · Navigate to github profile > Settings > SSH and GPG keys > New SSH key. In the text-field paste the content of ~/.ssh/id_rsa.pub file. See more at the second link in answer.

  4. ssh - How to solve Permission denied (publickey) error when using Git ...

    I previously created a public key through github, then generated another key-pair with the ssh-keygen utility. Deleting the old public key in personal settings on github and adding my ssh generated …

  5. git - Attempting to add my SSH key to the ssh-agent but getting 'no ...

    Jan 22, 2021 · Then type cat id_rsa.pub and copy the key. Add that key in GitHub's SSH key if you want: You'll find the guide here. To set up the git-agent, run eval "$(ssh-agent -s)" into the terminal. …

  6. How to configure command line git to use ssh key

    May 8, 2014 · When I do git pull via the command line, it always asks for my github username and password. I'd like to tell it to use the ssh key in github, and never have to worry about it again. How …

  7. git - Issue on adding SSH key to GitHub - Stack Overflow

    23 I have got an issue that seems about the format of SSH key used by GitHub. I used Git Bash to generate a new SSH key: $ ssh-keygen -t rsa -C "[email protected]" Then, I copied the key …

  8. Git how to clone with SSH key, username - Stack Overflow

    $> ssh-add ~/.ssh/id_rsa Step 3.1: Add the SSH key to your GIT account. Get your public key $> cat ~/.ssh/id_rsa.pub Go to your GIT Account Settings (your profile picture in the upper right corner) -> …

  9. Why is github asking me username/password although I setup SSH ...

    Sep 21, 2017 · In my case, I have created my own repo on GitHub, and wanted to push files to that repo from my local machine. When I wanted to push the code, I was asked to type the username and …

  10. git - GitHub error - Key is invalid. You must supply a key in OpenSSH ...

    Jun 26, 2022 · When you create ssh keys you get 2 key's. One is the public key with " *.pub " and one private key. You can read both keys if you open the files. The private key begins with something like: …