About 103,000 results
Open links in new tab
  1. How to configure command line git to use ssh key

    May 8, 2014 · Get the git@github... part from GitHub by clicking on the SSH link for your clone URL. If that doesn't do it, you may have to (a) add a second key to GitHub, or (b) let your …

  2. git - How to generate ssh keys (for github) - Stack Overflow

    May 6, 2017 · 18 Here is the command ssh-keygen -t rsa -b 4096 -C "[your github's email]" # Creates a new ssh key # Generating public/private rsa key pair. This will generate a key for …

  3. How can I add an already generated SSH key to git bash?

    Sep 11, 2019 · I have an SSH key saved in D:/keys folder. I want to add it to my git bash. All the tutorials I found is how to generate SSH key using gitbash and load it to github/gitlab. I …

  4. 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 …

  5. Why doesn't my SSH key work for connecting to github?

    Apr 1, 2012 · The GitHub ssh setup mentions testing your GitHub connection with: $ ssh -T [email protected] That follow the ssh uri syntax (also illustrated in "this answer"). But you did: …

  6. How to run ssh-add on windows? - Stack Overflow

    One could install Git for Windows and subsequently run ssh-add: Step 3: Add your key to the ssh-agent To configure the ssh-agent program to use your SSH key: If you have GitHub for …

  7. How to migrate from HTTPS to SSH with GitHub - Stack Overflow

    Jul 27, 2019 · Open Git Bash. Run ssh-keygen and follow the on-screen messages (or simply click Enter till it is over) Copy the key file (the content of the public key) located in: …

  8. How do I sign git commits using my existing ssh key

    Nov 15, 2021 · If you already use an SSH key to authenticate with GitHub, you can now upload the same or a different key and use it as a signing key. There is no limit to the number of …

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

    Nov 27, 2019 · Finally, go to Github -> Settings -> SSH And GPG keys -> Click New RSA (Green Button). Give some meaningful title to the key and paste the public key copied in step 4 above. …

  10. Is it possible to use Visual Studio 2022 as GIT client with SSH?

    Mar 15, 2023 · Visual Studio 2022 supports SSH-authenticated Git clients. SSH authentication in Visual Studio 2022 with GitHub requires these steps: SSH clients produce public-private key …