About 63 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 you. You have to …

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

  3. bash - How to specify the private SSH-key to use when executing shell ...

    A rather unusual situation perhaps, but I want to specify a private SSH-key to use when executing a shell (git) command from the local computer. Basically like this: git clone [email protected]:TheUser/

  4. 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: ~/.ssh/id_rsa.pub Add the key …

  5. [guide] how to activate and work with an ssh key on GitHub

    Feb 22, 2021 · [guide] how to activate and work with an ssh key on GitHub In August, passwords will be deprecated and ssh keys are an efficient way to go. Here are the steps: check if you already have an …

  6. What is the purpose of adding SSH keys to GitHub?

    Jul 23, 2019 · SSH stands for Secure Shell , and an SSH key is a cryptographic key used to securely authenticate your computer with GitHub (or any other remote server). The main purpose of using …

  7. What's the difference between signing commits with SSH versus GPG?

    Aug 25, 2022 · For more information, visit SSH Commit Verification in the GitHub documentation. In the light of this recent event, I would like to know: What's the difference between signing commits with an …

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

    Nov 15, 2021 · GitHub now supports SSH commit verification, so you can sign commits and tags locally using a self-generated SSH public key, which will give others confidence about the origin of a change …

  9. SSH Key - Still asking for password and passphrase

    My problem is that I am still asked for my GitHub password and passphrase when cloning a repository (using SSH). My understanding was that after I set up this SSH key, I would no longer have to do …

  10. Git keeps asking me for my ssh key passphrase - Stack Overflow

    Apr 5, 2012 · I created keys as instructed in the GitHub tutorial, added them to GitHub, and tried using ssh-agent explicitly — yet git continues to ask me for my passphrase every time I try to do a pull or a …