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

    May 6, 2017 · Step 1: Generate Your SSH Key $ ssh-keygen -t rsa -b 4096 -C "[email protected]" Step 2: Use the Key $ eval $(ssh-agent -s) Then add the key we …

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

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

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

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

  8. Using SSH keys inside docker container

    Aug 9, 2013 · I have an answer here, using ssh-add, which is considered safe (as Josh Habdas says above, choose wisely). I had real difficulties to make it work on Ubuntu 20.04, mainly …

  9. Multiple GitHub Accounts & SSH Config - Stack Overflow

    Jul 12, 2010 · I have 3 separate SSH identities in ~/.ssh/config. The one for school server has a passcode; the 2 for separate work/personal GitHub accts do not. Running git pull kept failing & …

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

    Mar 15, 2023 · GitHub: Add your public key. After generating your SSH key pair, add your public key to GitHub. Click "SSH and GPG keys" in your GitHub account settings. Click "Create SSH …