DEV Community

Cover image for Steps to generate github ssh keys for windows
kennethnnah
kennethnnah

Posted on • Edited on

Steps to generate github ssh keys for windows

Image of the errorHave you wondered why you get this weird error while trying to push or clone code from github? to explain this in few words, it's the new ssh protocol which is githubs way of allowing you easily authenticate to the github service without supplying your username and password everytime you want to push code to the github cloud

1.ssh-keygen -t rsa -b 4096 -C "your_email@example.com" copy and paste this code on your command line.

  1. Type cd .ssh to gain access to that directory. You will find 3 files inside the directory namely; id_rsa, id_rsa.pub and known_hosts.

  2. Type cat id_rsa.pub to open and copy the generate key

  3. Once this code has been copied, navigate to settings->SSH and GPG keys.

  4. Use the green button on the top right to create new ssh key, you will be required to fill in a name, then paste and save the generated key. voila!

Image of Timescale

🚀 pgai Vectorizer: SQLAlchemy and LiteLLM Make Vector Search Simple

We built pgai Vectorizer to simplify embedding management for AI applications—without needing a separate database or complex infrastructure. Since launch, developers have created over 3,000 vectorizers on Timescale Cloud, with many more self-hosted.

Read more

Top comments (0)

👋 Kindness is contagious

Immerse yourself in a wealth of knowledge with this piece, supported by the inclusive DEV Community—every developer, no matter where they are in their journey, is invited to contribute to our collective wisdom.

A simple “thank you” goes a long way—express your gratitude below in the comments!

Gathering insights enriches our journey on DEV and fortifies our community ties. Did you find this article valuable? Taking a moment to thank the author can have a significant impact.

Okay