Crear clave ssh github

Ejemplos de código

6
0

añadir clave ssh a github

### ADD SSH key to Github  ###

# Check if you have a key?
ssh-add -l

# If not? then follow steps to generate key
ssh-keygen -t rsa -b 4096 -C your__gmail

# Now for copy the key use xclip tool or just goto file and copy
sudo apt install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub

# Now goto github.com and goto settings 
# select  SSH and GPG keys
# New SSH key
# Enter "your__choice__name" in title field...
# Paste your public key into the Key field
# Click Add SSH key

DONE!!! 



5
0

ssh github generar clave

$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
1
0

github generar nueva clave ssh

$ ssh-keygen -t ed25519 -C "[email protected]"
1
0

cómo crear una clave ssh para github

$ eval "$(ssh-agent -s)"
> Agent pid 59566
0
0

crear clave ssh github

$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
0
0

Agregue su clave privada SSH al agente ssh. Si creó su clave con un nombre diferente, o si está agregando una clave existente que tiene un nombre diferente, reemplace id_rsa en el comando con el nombre de su archivo de clave privada.

$ cat ~/.ssh/id_rsa.pub

Páginas relacionadas

Páginas de ejemplo relacionadas

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................