Generate RSA Key for Commits and PULL in Gitlab Without Authentication

Tiempo de lectura: 2 minutos Reading time: 3 minutes Today, I’m going to show you how to create an RSA key to use in your GITLAB projects https://gitlab.com/ First, let’s go to the Ubuntu console (you can use WSL if you’re on Windows) ssh-keygen -t rsa -b 4096 -C “email@example.com” Replace “email@example.com” with the email of your Gitlab account. It … Read more