About 69,400 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 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. 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 …

  4. How to generate SSH on Github using Terminal - Stack Overflow

    Dec 31, 2012 · I have deleted by SSH key by mistakenly on Github account, Now i don't know how to add that keys or generate new keys.

  5. How to Create SSH Key in git - Stack Overflow

    May 17, 2019 · I using the following command to create SSH key in git $ ssh-keygen -t rsa -b 4096 -C " [email protected] " on git bash, but when I enter this command on bash it …

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

    May 9, 2014 · Assuming that you have used ssh-keygen to generate a key pair and uploaded the public key in the appropriate place in your github account, you should be able to set remote to …

  7. How do I use multiple SSH keys on GitHub? - Stack Overflow

    Mar 13, 2015 · The SSH configuration on GitHub seems to be a nightmare. I have multiple GitHub accounts, but for which I can have multiple SSH keys. In the GitHub SSH configuration section …

  8. How to get github ssh to work CORRECTLY on WSL (Windows …

    Anyone facing this problem, needs to check whether your ssh-agent has their private key and whether the public key is also added to your GitHub account. Read the documentation below …

  9. How to configure git with SSH keys on Windows 10?

    In the git bash terminal type ssh-keygen -t rsa. This will generate public and private key pair Go to the location of the keys (I'd recommend using git bash for it) and open the public key (with cat, …

  10. Should I use my personal email in my ssh public keys?

    Jan 11, 2016 · The email is only optional field to identify the key. When you create the ssh you type (for example): ssh-keygen -t rsa -C "any comment can be here" -t = The type of the key to …