About 82,300 results
Open links in new tab
  1. 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 …

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

    May 9, 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 …

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

    Sep 11, 2019 · 40 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. 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 …

  6. 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: …

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

    Jul 27, 2019 · Copy the key file (the content of the public key) located in: ~/.ssh/id_rsa.pub Add the key to GitHub In the upper-right corner of any page, click your profile photo, and then click …

  8. how to setup ssh keys for jenkins to publish via ssh

    For Windows: Install the necessary plugins for the repository (ex: GitHub install GitHub and GitHub Authentication plugins) in Jenkins. You can generate a key with Putty key generator, or …

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

    Mar 15, 2023 · I have used VS 2019 and 2022 with Github for quite a while but it is all limited to regular https with email/password login. I have this project where is git over ssh is required.

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