Como configurar multiples llaves ssh para distintos repositorios en github
Crear llave y agregarla a github Crear llave ssh: 1 ssh-keygen -t ed25519 -C "tu_correo@ejemplo.com" agregar llave al ssh-agent: 1 ssh-add ~/.ssh/elvinguti_key Agregar llave a github. Actualizar ssh config file Edita ~/.ssh/config: 1 2 3 4 5 6 7 8 9 10 Host github.com HostName github.com IdentityFile ~/.ssh/my_work_key IdentitiesOnly yes Host elvinguti.github.com HostName github.com User elvinguti IdentityFile ~/.ssh/elvinguti_key IdentitiesOnly yes seguramente necesitaras reiniciar el ssh-agent: ...