Zipyinthenet¡ WebSite !

Zipyinthenet¡ WebSite with a lot of info.

——-Inicio/Home——-Posts-Guias-Por-Fecha-Publicación——-Posts-Guias-Por-Categorias——-Links——-

Git - Parte 2

Git es un controlador de versiones para ficheros.

Configurar git mediante clave ssh:

Conectar a GitHub con SSH

link


Comprobar tus claves SSH existentes

   $ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
    id_rsa.pub
    id_ecdsa.pub
    id_ed25519.pub

link


Generar una nueva clave SSH

$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Esto crea una nueva clave ssh usando el correo electrónico proporcionado como etiqueta

> Enter a file in which to save the key (/home/you/.ssh/id_rsa): [Press enter]
> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]

Agregar tu clave SSH al ssh-agent es opcional.

link.


Agregar una clave SSH nueva a tu cuenta de GitHub u otro GIT repository como GITEA GITLAB..etc

cat /home/you/.ssh/id_rsa.pub

El resultado por pantalla copia desde primera linea a la ultima de todo lo que salga por pantalla.

imagengithubsettings

imagengithubllavesssh

githubaddsshkey

copy-key

addkeygithub

link


Probar tu conexión SSH

$ ssh -T git@github.com
# Attempts to ssh to GitHub

Puedes ver una advertencia como la siguiente:

> La autenticidad del host 'github.com (DIRECCIÓN IP)' no se puede establecer.
> La clave de huella digital RSA es SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
> ¿Estás seguro de que quieres continuar conectado (sí/no)?
> Hi username! You've successfully authenticated, but GitHub does not
> provide shell access.

ZipyintheNet¡ 2020!®