“Agregar tecla SSH a GitHub” Código de respuesta

Agregar tecla SSH a GitHub

$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
Perro Fiel

Configuración de teclas GitHub SSH

$ ssh-keygen -t ed25519 -C "[email protected]"
# start the ssh-agent in the background
$ eval "$(ssh-agent -s)"
> Agent pid 59566
ssh-add ~/.ssh/id_ed25519
clip < ~/.ssh/id_ed25519.pub
suraj meshram

Generar una nueva llave GitHub SSH

ssh-keygen -t rsa -b 4096 -C "[your github's email]"
Cheerful Copperhead

GitHub cómo agregar la tecla SSH

Host *
  AddKeysToAgent yes
  UseKeychain yes
  IdentityFile ~/.ssh/id_rsa
Ugly Unicorn

Respuestas similares a “Agregar tecla SSH a GitHub”

Preguntas similares a “Agregar tecla SSH a GitHub”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código